FLAGS =
LIBS = -licq -L/usr/local/lib 
INSTALL_DIR = /usr/local/bin

all:	static

static: icqsend.c
	gcc -g -o icqsend icqsend.c -static ${LIBS}
	strip icqsend

clean:
	rm icqsend

install: static
	chmod a+rx icqsend; cp icqsend ${INSTALL_DIR}
