diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 521bc19..0000000 --- a/Makefile +++ /dev/null @@ -1,29 +0,0 @@ -.PHONY: all - -all: wgtpkg-install wgtpkg-pack wgtpkg-sign - -O = -DPREDIR='""' - -INCS = wgtpkg.h - -COMSRCS = \ - wgtpkg-base64.c \ - wgtpkg-certs.c \ - wgtpkg-digsig.c \ - wgtpkg-files.c \ - wgtpkg-workdir.c \ - wgtpkg-xmlsec.c \ - wgtpkg-zip.c - - -INSTALLSRCS = wgtpkg-install.c $(COMSRCS) - -PACKSRCS = wgtpkg-install.c $(COMSRCS) - -XMLSECOPT = $(shell pkg-config --cflags --libs xmlsec1) - -wgtpkg-%: wgtpkg-%.c $(COMSRCS) $(INCS) - gcc $O -g -o wgtpkg-$* wgtpkg-$*.c $(COMSRCS) -lzip -lxml2 -lcrypto $(XMLSECOPT) -Wall -Wno-pointer-sign - - - |