diff --git a/project/Makefile b/project/Makefile index a1d227d..3eefd1d 100755 --- a/project/Makefile +++ b/project/Makefile @@ -1,7 +1,6 @@ # Makefile CC=gcc -CFLAGS = -W -Wall -pedantic -std=gnu99 -c -CPPFLAGS = -I. +CFLAGS = -W -Wall -pedantic -g -std=gnu99 -c LDFLAGS = -static RM = rm -f @@ -11,7 +10,7 @@ HEADERS = $(OBJECTS:.o=.h) SOURCES = $(TARGET).c $(OBJECTS:.o=.c) %.o: %.c - $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) $< -o $@ .PHONY: all clean