diff options
author | merakor <cem@ckyln.com> | 2020-08-22 15:03:10 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-08-22 15:03:10 +0000 |
commit | 9031dc631fa33a1493f5780943f8f888ce530178 (patch) | |
tree | 8acd058d02ace545eb026e95a944e7bf9a0b4211 /getopt-ul/Makefile | |
parent | 01fb58cf040114841800d9cceba9d256278a4682 (diff) | |
download | cpt-9031dc631fa33a1493f5780943f8f888ce530178.tar.gz |
cpt: remove getopt and use shell library instead.
FossilOrigin-Name: cbe6d1050c67fcce58e754cd03832089ffeb33a5f9455c55e71738ab11e0d056
Diffstat (limited to 'getopt-ul/Makefile')
-rw-r--r-- | getopt-ul/Makefile | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/getopt-ul/Makefile b/getopt-ul/Makefile deleted file mode 100644 index 782240c..0000000 --- a/getopt-ul/Makefile +++ /dev/null @@ -1,15 +0,0 @@ -include ../config.mk - -getopt: getopt.c - ${CC} -include config.h ${CFLAGS} ${LDFLAGS} -o getopt getopt.c - -clean: - rm -f getopt - -install: - install -Dm755 getopt ${DESTDIR}${BINDIR}/getopt - -uninstall: - rm -f ${DESTDIR}${BINDIR}/getopt - -.PHONY: all install uninstall clean |