#
# Makefile for WHAT: Transfer Activities
# Copyright (c) 1997 bObO/mYSTiC (east@canit.se)
#

CC		= gcc

LIBDIR 		= /home/bbs/lib

INCLUDEDIR	= /home/bbs/include

CFLAGS	= -I$(INCLUDEDIR) -L$(LIBDIR) -DUNIX -O2 -Wall -pipe -fomit-frame-pointer

LIBS	= dd

OBJS	= what.o

#
# Do not change below this line
#

all:		what

what:		$(OBJS)
		$(CC) $(CFLAGS) $(OBJS) -o what -l$(LIBS)

what.o:		what.c what.h
		$(CC) $(CFLAGS) -c what.c

clean:
		rm -f *~ *.o core what
