# Makefile for flicp # programm from # # Copyright (C) 2002 Christopher Loessl # Copyright (C) 2002 Stefan Strigler # # This programm is under the GPL 2 # # Created: 2002 08 03 # Last updated: 2003 03 10 CC = gcc CFLAGS = -ggdb -Wall flicp: flicp.o comi.o clean: @rm -f *.o flicp *~ install: flicp @cp ./flicp /usr/local/bin/flicp uninstall: @rm /usr/local/bin/flicp tar-ball: @tar cvfz flicp.tgz *.c Makefile README AUTHORS COPYING bz2-ball: @tar cvfj flicp.tgz *.c Makefile README AUTHORS COPYING