From: FreeBirdLjj Date: Wed, 17 Sep 2014 14:24:41 +0000 (+0800) Subject: Bugfix: the first target should have been `all', not `mdp'. X-Git-Url: https://git.danieliu.xyz/?p=smdp.git;a=commitdiff_plain;h=50c6c938c5cd3f9bf43173bc6ac3c14d8024c045 Bugfix: the first target should have been `all', not `mdp'. --- diff --git a/Makefile b/Makefile index d4df0d5..550dcef 100644 --- a/Makefile +++ b/Makefile @@ -27,11 +27,11 @@ DESTDIR ?= /usr/bin %.o: %.c $(CC) $(CFLAGS) -c $< +all: mdp + mdp: $(OBJECTS) $(CC) $(CFLAGS) -o mdp $(OBJECTS) $(LDFLAGS) -all: mdp - clean: rm -f $(OBJECTS) mdp