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

CC		= g++

LIBDIR 		= ./lib

INCLUDEDIR	= ./DDDI

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

LIBS	= DDDI

OBJS	= what.o

#
# Do not change below this line
#

all:		what

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

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

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