diff options
author | Christian Hesse <mail@eworm.de> | 2020-11-25 12:11:35 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2020-11-25 12:11:35 +0100 |
commit | ec839a5085e3af6a797f261523777bf603b65c1c (patch) | |
tree | 82fa792d884317c0382575b131d6c2d1eebdc81d /Makefile | |
parent | 3a513eb5c3603b0bdab1f210f2de483fcea9e90c (diff) | |
download | netlink-notify-ec839a5085e3af6a797f261523777bf603b65c1c.tar.gz netlink-notify-ec839a5085e3af6a797f261523777bf603b65c1c.tar.zst |
Makefile: change order of compiler parameters
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ VERSION := 0.8.0 all: netlink-notify icons README.html netlink-notify: netlink-notify.c version.h config.h - $(CC) $(CFLAGS) $(LDFLAGS) -o netlink-notify netlink-notify.c + $(CC) netlink-notify.c $(CFLAGS) $(LDFLAGS) -o netlink-notify config.h: $(CP) config.def.h config.h |