Add flags to debug target

This commit is contained in:
Samuel Henrique 2016-11-02 17:47:56 -02:00
parent 250085102b
commit 81d5b4bd2a

View File

@ -10,7 +10,7 @@ all:
$(CC) $(CFLAGS) $(CCFLAGS) $(CPPFLAGS) -o $(TARGET) $(SOURCE) $(LDFLAGS)
debug:
$(CC) $(CCFLAGS) -DDEBUG -o $(TARGET) $(SOURCE)
$(CC) $(CLFAGS) $(CCFLAGS) $(CPPFLAGS) -DDEBUG -o $(TARGET) $(SOURCE) $(LDFLAGS)
install:
rm -f $(BINDIR)/$(TARGET)