aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0b615b9..c7b84eb 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@ GIMPTOOL = gimptool-2.0
CC = gcc
LD = gcc
CFLAGS = $(shell $(GIMPTOOL) --cflags) \
- -O2 -ansi -pedantic -Wall -Wextra -Wno-attributes \
+ -O2 -Wall -Wextra -Wno-attributes \
-Wno-unused-parameter \
#-save-temps -g
@@ -44,7 +44,7 @@ clean:
rm -f *.o *.i *.s $(MAIN)
$(MAIN): $(OBJ)
- $(LD) $(LDFLAGS) $(OBJ) -o $@
+ $(LD) $(OBJ) $(LDFLAGS) -o $@
%.o: %.c $(HDR) Makefile
$(CC) -c $(CFLAGS) $< -o $@