summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@zytor.com>2018-06-15 17:41:46 -0700
committerH. Peter Anvin <hpa@zytor.com>2018-06-15 17:41:46 -0700
commit675618c5dd670ea719d3c418e3d1d275b600b05f (patch)
treea43d8db172df33d36e4b872510f7217dd411cf5d /Makefile.in
parent14a10935f7497f0dc9de1f0247e9506565e43da6 (diff)
downloadnasm-675618c5dd670ea719d3c418e3d1d275b600b05f.tar.gz
Makefile.in: remove duplicated $(ALL_CFLAGS)
We really don't need every C compiler flag repeated twice. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in
index c9f8928a..9a8e2def 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -74,13 +74,13 @@ endif
.PHONY: manpages nsis
.c.$(O):
- $(CC) -c $(ALL_CFLAGS) $(ALL_CFLAGS) -o $@ $<
+ $(CC) -c $(ALL_CFLAGS) -o $@ $<
.c.s:
- $(CC) -S $(ALL_CFLAGS) $(ALL_CFLAGS) -o $@ $<
+ $(CC) -S $(ALL_CFLAGS) -o $@ $<
.c.i:
- $(CC) -E $(ALL_CFLAGS) $(ALL_CFLAGS) -o $@ $<
+ $(CC) -E $(ALL_CFLAGS) -o $@ $<
.txt.xml:
$(ASCIIDOC) -b docbook -d manpage -o $@ $<