aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2021-02-06 23:10:16 +0100
committerMattias Andrée <maandree@kth.se>2021-02-06 23:10:16 +0100
commit6091794aaf32d4d68f748356aee321d71a6fb4ac (patch)
tree4f5e2eb1c612cdb4223153ddc60a52da7c5d9643 /Makefile
parentAdd posix time support (diff)
downloadmongoclock-6091794aaf32d4d68f748356aee321d71a6fb4ac.tar.gz
mongoclock-6091794aaf32d4d68f748356aee321d71a6fb4ac.tar.bz2
mongoclock-6091794aaf32d4d68f748356aee321d71a6fb4ac.tar.xz
Fix makefile
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f197990..376a12e 100644
--- a/Makefile
+++ b/Makefile
@@ -11,7 +11,7 @@ DIGITS =\
all: mongoclock
mongoclock: mongoclock.o
- $(CC) -o $@ $^ $(LDFLAGS)
+ $(CC) -o $@ mongoclock.o $(LDFLAGS)
mongoclock.o: mongoclock.c arg.h $(DIGITS)
$(CC) -c -o $@ mongoclock.c $(CPPFLAGS) $(CFLAGS)