Merge pull request #130 from ginggs/enable-optimization-again

Enable optimization again for *int.c and *intf.c
This commit is contained in:
Viral B. Shah 2018-06-18 17:22:47 -04:00 committed by GitHub
commit a96f0740e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,13 +132,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 $@