# Makefile for helloweensent v1.1

CC=gcc
TARGET=helloweensent
LDFLAGS=
SWITCHES=-Wall
helloweensent :
		$(CC) $(LDFLAGS) $(SWITCHES) -o $(TARGET) helloweensent.c -I/home/bbs/include -L/home/bbs/lib -ldd

clean :
		rm -f $(TARGET)

# Makefile EOF
