diff options
| author | Simon Tatham <anakin@pobox.com> | 2017-05-16 19:23:06 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2017-05-16 19:23:06 +0100 |
| commit | 80d18da9a127d1d7d111625133742691b9aeedfe (patch) | |
| tree | ca33f81fe280329fa3d593ad5b509688d817c795 | |
| parent | e12d87eea4df6844d32b564a7840111d8acaf49f (diff) | |
| download | halibut-80d18da9a127d1d7d111625133742691b9aeedfe.zip halibut-80d18da9a127d1d7d111625133742691b9aeedfe.tar.gz halibut-80d18da9a127d1d7d111625133742691b9aeedfe.tar.bz2 halibut-80d18da9a127d1d7d111625133742691b9aeedfe.tar.xz | |
Makefile: apply user-provided CFLAGS to version.c.
Thanks to Leah Neukirchen for pointing out that it was left out of
that special-case rule.
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -110,7 +110,7 @@ halibut$(EXE): $(OBJECTS) $(CC) $(CFLAGS) -MD -c $< version.o: FORCE - $(CC) $(VDEF) -MD -c $(SRC)version.c + $(CC) $(CFLAGS) $(VDEF) -MD -c $(SRC)version.c spotless:: clean rm -f *.d |