aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormerakor <cem@ckyln.com>2020-12-20 20:00:33 +0000
committermerakor <cem@ckyln.com>2020-12-20 20:00:33 +0000
commit16dd8abfa7f34ea3b6de4e22a1957f21dcf5d83d (patch)
tree624a9824373b6ba3ad46e2a71ded071ac64de832 /Makefile
parent96a1f4d2a70e1631564c00fa33e7f11c5e331573 (diff)
downloadcpt-16dd8abfa7f34ea3b6de4e22a1957f21dcf5d83d.tar.gz
cpt: remove Makefile and config.mk
FossilOrigin-Name: 939a0899a2d62edcf207a8679988a0486a06c56fd1b92efc0af2e0b0146a5553
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile69
1 files changed, 0 insertions, 69 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 4e0880d..0000000
--- a/Makefile
+++ /dev/null
@@ -1,69 +0,0 @@
-# See LICENSE for copyright information
-include config.mk
-
-SRC = bin/cpt-readlink.c bin/cpt-stat.c
-OBJ = ${SRC:.c=.o}
-BIN = ${SRC:.c=}
-
-.SUFFIXES:
-.SUFFIXES: .o .c .org .texi .info
-
-.org.texi:
- ${EMACS} $< --batch -f org-texinfo-export-to-texinfo
-
-.texi.info:
- ${MAKEINFO} $< -o $@
-
-all: ${BIN}
-
-.c:
- ${CC} ${CFLAGS} ${LDFLAGS} -o $@ $< ${LIBS}
-
-clean:
- rm -f ${BIN} ${OBJ}
-
-test: ${BIN}
- bin/cpt-stat bin
- bin/cpt-stat Makefile
- bin/cpt-readlink /bin/sh
- ${MAKE} -C src test
-
-install-bin: ${BIN}
- for bin in ${BIN}; do \
- install -Dm755 $${bin} ${DESTDIR}${BINDIR}/$${bin##*/}; done
-
-install-src:
- for bin in src/*; do \
- install -Dm755 $${bin} ${DESTDIR}${BINDIR}/$${bin##*/}; done
-
-install-contrib:
- for bin in contrib/*; do \
- install -Dm755 $${bin} ${DESTDIR}${BINDIR}/$${bin##*/}; done
-
-install-contrib-static:
- mkdir -p ${DESTDIR}${BINDIR}
- for bin in contrib/*; do \
- sed '/\. cpt-lib/r src/cpt-lib' $${bin} | \
- sed '/\. cpt-lib/d' > ${DESTDIR}${BINDIR}/$${bin##*/}; \
- chmod 755 ${DESTDIR}${BINDIR}/$${bin##*/}; done
-
-install-src-static:
- mkdir -p ${DESTDIR}${BINDIR}
- for bin in src/*; do \
- sed '/\. cpt-lib/r src/cpt-lib' $${bin} | \
- sed '/\. cpt-lib/d' > ${DESTDIR}${BINDIR}/$${bin##*/}; \
- chmod 755 ${DESTDIR}${BINDIR}/$${bin##*/}; done
-
-install-doc:
- for man in man/*.1; do install -Dm644 $${man} ${DESTDIR}${MAN1}/$${man##*/}; done
-
-install: install-bin install-src install-contrib install-doc
-install-static: install-bin install-src-static install-contrib-static install-doc
-
-uninstall:
- for bin in ${BIN} src/* contrib/*; do \
- rm -f ${DESTDIR}${BINDIR}/$${bin##*/}; done
- for man in man/*; do rm -f ${DESTDIR}${MAN1}/$${man##*/}; done
-
-
-.PHONY: all install-bin install-src install-contrib install-doc install-src-static install-contrib-static install uninstall test clean