Commit 0914dd4b authored by Andrey Filippov's avatar Andrey Filippov

added .depend

parent e64b4b34
......@@ -6,6 +6,7 @@ attic/*
/.externalToolBuilders
/.settings
.directory
.depend
generated*
sysroots
bitbake-logs
......
......@@ -34,9 +34,10 @@ install: $(PROGS)
$(INSTALL) -m $(INSTMODE) -o $(INSTOWNER) -g $(INSTGROUP) editconf.php $(DESTDIR)$(CGIDIR)
clean:
rm -rf $(PROGS) *.o core
#dependency:
# make depend
#depend:
# makedepend -Y -- $(CFLAGS) -- $(SRCS) 2>/dev/null
# touch dependency
# DO NOT DELETE
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