summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 4841f65..0493ce5 100644
--- a/Makefile
+++ b/Makefile
@@ -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