From 0dde39a31c1d6e02e1fa22b719c3e53a27446e86 Mon Sep 17 00:00:00 2001 From: merakor Date: Sun, 14 Mar 2021 00:01:56 +0000 Subject: Makefile: fix contrib and src macros FossilOrigin-Name: 71d3a5c88b2b61dd68fb1672e7877d0cb07e071cbe63a29716ded1c0a4e54f9b --- Makefile | 4 ++-- 1 file 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} -- cgit v1.2.3