Enable optimization again for *int.c and *intf.c

This commit is contained in:
Graham Inggs 2016-04-07 19:11:49 +02:00 committed by Graham Inggs
parent a844d584d3
commit a24a5ebb6e
1 changed files with 0 additions and 7 deletions

View File

@ -129,13 +129,6 @@ endif
endif
# *int / *intf need to be built with -O0
src/%int.c.o: src/%int.c
$(CC) $(CPPFLAGS) -O0 $(CFLAGS_add) -c $< -o $@
src/%intf.c.o: src/%intf.c
$(CC) $(CPPFLAGS) -O0 $(CFLAGS_add) -c $< -o $@
%.c.o: %.c
$(CC) $(CPPFLAGS) $(CFLAGS) $(CFLAGS_add) -c $< -o $@