aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2017-12-09 17:03:37 +0100
committerMattias Andrée <maandree@kth.se>2017-12-09 17:03:37 +0100
commit83bdefeeca6ddcdd26d4abc9ead75617c2313e96 (patch)
treebe2aa410115f2c2fb63336a4e21cb374bfbdc5b5 /Makefile
parentAdd make check (diff)
downloadslack-83bdefeeca6ddcdd26d4abc9ead75617c2313e96.tar.gz
slack-83bdefeeca6ddcdd26d4abc9ead75617c2313e96.tar.bz2
slack-83bdefeeca6ddcdd26d4abc9ead75617c2313e96.tar.xz
Fix makefile portability
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b2b3729..8652733 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@ include $(CONFIGFILE)
all: slack
slack: slack.o
- $(CC) -o $@ $^ $(LDFLAGS)
+ $(CC) -o $@ slack.o $(LDFLAGS)
slack.o: slack.c arg.h
$(CC) -c -o $@ $< $(CFLAGS) $(CPPFLAGS)