Using the implicit rules of `make`.
authorFreeBirdLjj <ljj11011@mail.ustc.edu.cn>
Wed, 17 Sep 2014 14:45:33 +0000 (22:45 +0800)
committerFreeBirdLjj <ljj11011@mail.ustc.edu.cn>
Wed, 17 Sep 2014 14:45:33 +0000 (22:45 +0800)
Makefile

index c99d35d..de3c650 100644 (file)
--- a/Makefile
+++ b/Makefile
 # along with this program. If not, see <http://www.gnu.org/licenses/>.
 #
 
-CC       = /usr/bin/gcc
 CFLAGS   = -Wall -g
-LDFLAGS  = -lncurses
+LDLIBS   = -lncurses
 OBJECTS  = cstring.o cstack.o markdown.o parser.o viewer.o mdp.o
 DESTDIR ?= /usr/bin
 
-%.o: %.c
-       $(CC) $(CFLAGS) -c $<
-
 all: mdp
 
 mdp: $(OBJECTS)
-       $(CC) $(CFLAGS) -o mdp $(OBJECTS) $(LDFLAGS)
 
 clean:
-       rm -f $(OBJECTS) mdp
+       $(RM) $(OBJECTS) mdp
 
 install: mdp
        if which strip 1>/dev/null 2>&1; then strip mdp; fi