diff options
Diffstat (limited to 'v4l/Makefile')
-rw-r--r-- | v4l/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/v4l/Makefile b/v4l/Makefile index 57bb4e614..579b85f88 100644 --- a/v4l/Makefile +++ b/v4l/Makefile @@ -45,8 +45,9 @@ default:: config-compat.h Makefile.media links oss # firmware ./scripts/rmmod.pl check # $(MAKE) checkpatch -firmware:: firmlinks - $(MAKE) -C $(OUTDIR) SUBDIRS=$(PWD)/firmware $(MYCFLAGS) modules +firmware:: + $(MAKE) -C firmware + ################################################# # Object specific rules @@ -252,10 +253,6 @@ links:: @find ../linux/drivers/media -name '*.[ch]' -type f -print0 | xargs -0n 255 ln -sf --target-directory=. @find ../linux/sound -name '*.[ch]' -type f -print0 | xargs -0n 255 ln -sf --target-directory=. -firmlinks:: - for i in `find ../linux/firmware/ -type d|sed s,"../linux/firmware",,`; do mkdir -p firmware/$$i; done >/dev/null - for i in `find ../linux/firmware/ -type f|sed s,"../linux/firmware",,`; do ln -sf $(PWD)/../linux/firmware/$$i firmware/$$i; done - # This link is so code with #include "oss/*.h" will find its header files oss: ln -sf . oss @@ -280,6 +277,7 @@ clean:: @find . -name '*.h' -type l -exec rm '{}' \; -rm -f *~ *.o *.ko .*.o.cmd .*.ko.cmd *.mod.c av7110_firm.h fdump \ config-compat.h Module.symvers + make -C firmware clean distclean:: clean -rm -f .version .*.o.flags .*.o.d Makefile.media \ |