Commit cd29c5e2 authored by Andrey Filippov's avatar Andrey Filippov

added .depend

parent 5f9388cc
...@@ -7,6 +7,7 @@ attic/* ...@@ -7,6 +7,7 @@ attic/*
/.externalToolBuilders /.externalToolBuilders
/.settings /.settings
.directory .directory
.depend
generated* generated*
sysroots sysroots
bitbake-logs bitbake-logs
......
...@@ -44,5 +44,11 @@ install: $(PROGS) $(PHPSCRIPTS) $(CONFIGS) ...@@ -44,5 +44,11 @@ install: $(PROGS) $(PHPSCRIPTS) $(CONFIGS)
clean: clean:
rm -rf $(PROGS) *.o *~ rm -rf $(PROGS) *.o *~
#TODO: implement automatic dependencies!
camogm.c:$(STAGING_DIR_HOST)/usr/include-uapi/elphel/x393_devices.h depend: .depend
.depend: $(SRCS)
rm -f ./.depend
$(CC) $(CFLAGS) -MM $^ > ./.depend;
include .depend
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment