Fixed CFLAGS typo in Makefile

Introduced in (81d5b4b).
This commit is contained in:
wiire-a 2017-10-25 09:57:00 +02:00
parent 887fbbb33d
commit 4937d61d40

View File

@ -12,7 +12,7 @@ all:
$(CC) $(CFLAGS) $(CPPFLAGS) -o $(TARGET) $(SOURCE) $(LIBS) $(LDFLAGS)
debug:
$(CC) $(CLFAGS) $(CPPFLAGS) -DDEBUG -o $(TARGET) $(SOURCE) $(LIBS) $(LDFLAGS)
$(CC) $(CFLAGS) $(CPPFLAGS) -DDEBUG -o $(TARGET) $(SOURCE) $(LIBS) $(LDFLAGS)
install:
install -d $(BINDIR)