diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 1 insertions, 10 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 |