CC = CC
DEBUG = -O
C++FLAGS = $(DEBUG) 
LIBS =  -lXm -lXt -lX11 -lPW

TARGETS =  form hello pushme widgettree 

all: $(TARGETS)

hello: hello.o
	$(CC) -o hello hello.o $(LIBS)


pushme: pushme.o
	$(CC) -o pushme pushme.o $(LIBS)


widgettree: widgettree.o
	$(CC) -o widgettree widgettree.o $(LIBS)

form: form.o
	$(CC) -o form form.o $(LIBS)

clobber:
	rm -f *.o *~*
	rm -f $(TARGETS)


