# Makefile for earwhip. See README for details. VERSION=1.0 TEXTS=README SOURCES=Makefile earwhip.pl make-pitch.pl gpopup.c DISTFILES=${TEXTS} ${SOURCES} default: all all: gpopup gpopup: gpopup.c gcc -Wall -g gpopup.c -o gpopup \ `gtk-config --cflags` `gtk-config --libs` install: all cp gpopup /usr/local/bin cp make-pitch.pl /usr/local/bin cp earwhip.pl /usr/local/bin times: touch `find . -name "*"` dist: ${DISTFILES} tar zcvf earwhip-${VERSION}.tar.gz ${DISTFILES} clean: rm -f gpopup *.o *~ earwhip-*.tar.gz