diff options
author | Christian Hesse <mail@eworm.de> | 2020-11-25 12:10:50 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-11-25 12:10:50 +0100 |
commit | 9f70bfbf6f556ebe60daa79f7d3b56ca33c04eeb (patch) | |
tree | bc05fd2bf644414e92072a2915567e945e52f876 /Makefile | |
parent | afcb9e3769de39cd3b165b276b428b880791d008 (diff) | |
download | journal-notify-9f70bfbf6f556ebe60daa79f7d3b56ca33c04eeb.tar.gz journal-notify-9f70bfbf6f556ebe60daa79f7d3b56ca33c04eeb.tar.zst |
Makefile: change order of compiler parameters
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ VERSION := 0.1.1 all: journal-notify README.html journal-notify: journal-notify.c journal-notify.h config.h version.h - $(CC) $(CFLAGS) $(LDFLAGS) -o journal-notify journal-notify.c + $(CC) journal-notify.c $(CFLAGS) $(LDFLAGS) -o journal-notify config.h: $(CP) config.def.h config.h |