fix hardcoded cc

This commit is contained in:
Dane Springmeyer 2015-12-22 17:07:59 -08:00
parent 28b83cbe47
commit 893604ca94

View File

@ -52,7 +52,7 @@ libjsonpull.a: jsonpull.o
ranlib $@
%.o: %.c $(H)
cc $(PG) $(INCLUDES) -O3 -g -Wall $(CFLAGS) -c $<
$(CC) $(PG) $(INCLUDES) -O3 -g -Wall $(CFLAGS) -c $<
%.o: %.cc $(H)
$(CXX) $(PG) $(INCLUDES) -O3 -g -Wall $(CXXFLAGS) -c $<