
# Where to find Xpm library and includes
# You'll probably have to modify these two lines

        XPMLIB = -L/usr/lib/X11 -lXpm
        XPMICLUDE = -I/usr/lib/X11/include -I/home/chelsea/fcerou/xpm-3.4j

# What we need from X

        XLIBS = $(XAWLIB) -lXmu -lXt $(XLIB)
        LOCAL_LIBRARIES = $(XPMLIB) $(XLIBS) -L/usr/lib -lm

        DEFINES = $(XPMICLUDE)

# You may also want to modify this

        CC = cc

# Actually, not a lot of things to do...

        OBJS1 = flow1.o rand.o

        PROGRAMS = flow1

all::	$(PROGRAMS)

ComplexProgramTarget_1($(PROGRAMS), $(LOCAL_LIBRARIES), )

