Fix typo, s/CCFLAGS/CFLAGS/ (#145)

This commit is contained in:
Kuang-che Wu 2016-12-07 22:47:03 +08:00 committed by Mike Aizatsky
parent 2d7e3adcaf
commit 62004e9306
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@
make -j$(nproc) clean all
# build your fuzzer(s)
$CC $CCFLAGS -c $SRC/libtsm_fuzzer.c -Isrc/tsm -o $SRC/libtsm_fuzzer.o
$CC $CFLAGS -c $SRC/libtsm_fuzzer.c -Isrc/tsm -o $SRC/libtsm_fuzzer.o
$CXX $CXXFLAGS \
-o $OUT/libtsm_fuzzer \
$SRC/libtsm_fuzzer.o \

View File

@ -27,7 +27,7 @@ export CFLAGS="$CFLAGS -DSQLITE_MAX_LENGTH=128000000 \
make -j$(nproc)
make sqlite3.c
$CC $CCFLAGS -I. -c \
$CC $CFLAGS -I. -c \
$SRC/sqlite3/test/ossfuzz.c -o $SRC/sqlite3/test/ossfuzz.o
$CXX $CXXFLAGS \