aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2021-03-14 00:01:56 +0000
committermerakor <cem@ckyln.com>2021-03-14 00:01:56 +0000
commit0dde39a31c1d6e02e1fa22b719c3e53a27446e86 (patch)
treea6594d870c099dd5d2fbc5fa382e8bed7b208ea5 /Makefile
parenta27957daddf74ceacdb776832c8f47146224db92 (diff)
downloadcpt-0dde39a31c1d6e02e1fa22b719c3e53a27446e86.tar.gz
Makefile: fix contrib and src macros
FossilOrigin-Name: 71d3a5c88b2b61dd68fb1672e7877d0cb07e071cbe63a29716ded1c0a4e54f9b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ed1975b..012bfe2 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,8 @@
include config.mk
INSTALL_SH = ./tools/install.sh
-CONTRIB = `find contrib src -name 'cpt*' ! -name '*.*'`
-SRC = `find contrib src -name 'cpt*' ! -name '*.*'`
+CONTRIB = `find contrib -name 'cpt*' ! -name '*.*'`
+SRC = `find src -name 'cpt*' ! -name '*.*'`
BIN = ${SRC} ${CONTRIB}
LIB = src/cpt-lib
LIB_IN = ${LIB:=.in}