aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index b21f811..55a9c7a 100644
--- a/Makefile
+++ b/Makefile
@@ -14,16 +14,13 @@ PREFIX ?= /usr/local
BINDIR ?= $(PREFIX)/bin
MANDIR ?= $(PREFIX)/share/man
-SRC := $(wildcard *.c) $(wildcard *.cpp)
+SRC := ldid.cpp
LIBS ?= -lcrypto -lplist-2.0
MANPAGE_LANGS := zh_TW zh_CN
all: ldid
-%.c.o: %.c
- $(CC) -c $(CFLAGS) $(CPPFLAGS) -I. $< -o $@
-
%.cpp.o: %.cpp
$(CXX) -c $(CXXFLAGS) $(CPPFLAGS) -I. -DLDID_VERSION=\"$(VERSION)\" $< -o $@