You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
526 B
19 lines
526 B
#===============================================================================
|
|
# local variables
|
|
#===============================================================================
|
|
OMXVDEC_VERSION := omxvdec_v6.0
|
|
|
|
obj-y += $(OMXVDEC_VERSION)/
|
|
|
|
#===============================================================================
|
|
# rules
|
|
#===============================================================================
|
|
.PHONY: all clean
|
|
|
|
all:
|
|
$(AT)make -C $(OMXVDEC_VERSION)/ all
|
|
|
|
clean:
|
|
$(AT)make -C $(OMXVDEC_VERSION)/ clean
|
|
|