aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-08-24 20:08:00 +0200
committerTeddy Wing2021-08-24 20:08:00 +0200
commitb4ab3e4b5ed6346a0a05dc0c43bf9bcb5e892e1d (patch)
tree8ef499b08f40de6bdbf7eda1c218b59a976d42bf
parent1072cc0c7e92b28abfb23f7d878b97f30be29522 (diff)
downloadreadline-incdec-b4ab3e4b5ed6346a0a05dc0c43bf9bcb5e892e1d.tar.bz2
Makefile: Swap m4 arguments
Put the file after the option argument since it's more common to order them that way.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 2f88a43..b7bd9f3 100644
--- a/Makefile
+++ b/Makefile
@@ -3,7 +3,7 @@ all: incdec
incdec: incdec.m4.bash incdec.pl
- m4 $< --define="INCLUDE_INCDEC_PL=include(\`incdec.pl')dnl" > $@
+ m4 --define="INCLUDE_INCDEC_PL=include(\`incdec.pl')dnl" $< > $@
incdec.pl: incdec.pl.m4 incdec.pm
sed -n '/sub incdec {/,/^}/p' incdec.pm > incdec.sub.pl