remove flag
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user