Imported both gpgdir and gpgwrap projects.
[pgp-tools.git] / gpgwrap / src / Makefile
1 CC=${DIET} gcc -s -Wall -O2 -fomit-frame-pointer
2 STRIP=strip -R .note -R .comment
3 RM=rm -f
4 TARGET=../bin/gpgwrap
5
6 .PHONY: all clean
7
8 all: ${TARGET}
9
10 ${TARGET}: gpgwrap.c
11 ${CC} -o ${TARGET} gpgwrap.c
12 ${STRIP} ${TARGET} 2>/dev/null || true
13
14 clean:
15 ${RM} ${TARGET}