httping example.

This commit is contained in:
Ian A. Mason 2019-07-30 15:41:17 -07:00
parent fe8fbc063e
commit bda594ddbe

29
examples/httping/Makefile Normal file
View File

@ -0,0 +1,29 @@
# sudo apt-get install gettext
SRC=httping-2.5
TAR=${SRC}.tgz
URL=https://www.vanheusden.com/httping/${TAR}
all: httping.bc
${TAR}:
wget ${URL}
${SRC}: ${TAR}
tar xvfz ${TAR}
${SRC}/httping: ${SRC}
cd ${SRC}; CC=gclang ./configure; CC=gclang make
httping.bc: ${SRC}/httping
get-bc -m -o httping.bc ${SRC}/httping
clean:
rm -rf *.bc *.bca *.manifest
rm -rf slash_specialized
make -C ${SRC} clean
spotless: clean
rm -rf ${SRC} ${TAR}