# Yo right. This Makefile is almost an exact copy of the one which
# was included in id3-to-diz. Who cares, anyways? :)
CC = gcc
TARGET = announce
PARMS = -Wall -I/home/bbs/include -L/home/bbs/lib -ldd
SRCS = announce.c parseme.c

all :
	$(CC) $(PARMS) -o $(TARGET) $(SRCS)
	@echo
	@echo "SUCCESS"
	@echo "Did you read the README yet?"
	@echo
clean :
	rm -rf *.o $(TARGET) core
