diff options
author | Ian C <ianc@noddybox.co.uk> | 2011-05-04 10:54:45 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2011-05-04 10:54:45 +0000 |
commit | 5efe1840d4868b4e993b54f8402ead7a3aa68681 (patch) | |
tree | af11b4afe4ed57afc516d5ede5861ff1d58c6cef | |
parent | 70caa2c15cdba2a43cf0e9bc1df8e08511f0c068 (diff) |
Removed pointless dependency rule.
-rw-r--r-- | Makefile | 11 | ||||
-rw-r--r-- | depend.mak | 1 |
2 files changed, 1 insertions, 11 deletions
@@ -33,24 +33,15 @@ LIBS = -lncurses FLAGS = -O2 -g -Wall -std=c99 -DEPEND = depend.mak - $(TARGET): $(OBJECTS) $(CC) $(FLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) %.o: %.c $(CC) $(CFLAGS) $(CPPFLAGS) $(FLAGS) $(TRACE) -c $< -o $@ --include depend.mak +dbox.o: dbox.c clean: -rm -f $(TARGET) $(TARGET).exe core *.stackdump *.o depend.mak -depend: $(DEPEND) - @echo Dependencies updated.... - -$(DEPEND): $(SOURCES) $(HEADERS) - $(CC) -MM $(SOURCES) > $(DEPEND) - - # END OF FILE diff --git a/depend.mak b/depend.mak deleted file mode 100644 index 65af7b3..0000000 --- a/depend.mak +++ /dev/null @@ -1 +0,0 @@ -dbox.o: dbox.c |