diff options
Diffstat (limited to 'out')
-rw-r--r-- | out/config.sh | 4 | ||||
-rw-r--r-- | out/redo-always.do | 2 | ||||
-rw-r--r-- | out/redo-ifchange.do | 2 | ||||
-rw-r--r-- | out/redo-ifcreate.do | 2 | ||||
-rw-r--r-- | out/redo.do | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/out/config.sh b/out/config.sh index c9f6776..a0a846d 100644 --- a/out/config.sh +++ b/out/config.sh @@ -4,5 +4,5 @@ else PREF="gcc" fi CC=${CC-$PREF} -CFLAGS="-g -Wall -Wextra -std=c99 -pedantic" -LDFLAGS="-lcrypto -lm" +CFLAGS="-g -Wall -Wextra -std=c99 -pedantic -Wno-gnu-statement-expression" +LDFLAGS="-lm" diff --git a/out/redo-always.do b/out/redo-always.do index 55f25f0..b03f153 100644 --- a/out/redo-always.do +++ b/out/redo-always.do @@ -1,5 +1,5 @@ . ./config.sh -DEPS="redo-always.o build.o util.o filepath.o" +DEPS="redo-always.o build.o util.o filepath.o sha1.o" redo-ifchange $DEPS config.sh $CC -o $3 $DEPS $LDFLAGS diff --git a/out/redo-ifchange.do b/out/redo-ifchange.do index 5a1112b..c4627dc 100644 --- a/out/redo-ifchange.do +++ b/out/redo-ifchange.do @@ -1,5 +1,5 @@ . ./config.sh -DEPS="redo-ifchange.o build.o util.o filepath.o" +DEPS="redo-ifchange.o build.o util.o filepath.o sha1.o" redo-ifchange $DEPS config.sh $CC -o $3 $DEPS $LDFLAGS diff --git a/out/redo-ifcreate.do b/out/redo-ifcreate.do index 4ab8f85..a5a5482 100644 --- a/out/redo-ifcreate.do +++ b/out/redo-ifcreate.do @@ -1,5 +1,5 @@ . ./config.sh -DEPS="redo-ifcreate.o build.o util.o filepath.o" +DEPS="redo-ifcreate.o build.o util.o filepath.o sha1.o" redo-ifchange $DEPS config.sh $CC -o $3 $DEPS $LDFLAGS diff --git a/out/redo.do b/out/redo.do index 08ab81d..58e7152 100644 --- a/out/redo.do +++ b/out/redo.do @@ -1,5 +1,5 @@ . ./config.sh -DEPS="redo.o build.o util.o filepath.o" +DEPS="redo.o build.o util.o filepath.o sha1.o" redo-ifchange $DEPS config.sh $CC -o $3 $DEPS $LDFLAGS |