# Generic makefile - decstation version
#
            LDLIBS = -lMrm -lXm -lX11 -lXt -lXext -lX11
         LDOPTIONS = -L/usr/lib/Motif1.1 -L/usr/lib/X11R4
            CFLAGS = -g -D_NO_PROTO $(DEFINES) -I/usr/include/X11R4 \
		-I/usr/include/Motif1.1
                RM = rm -f

include CommonMakefile

$(PGM):: $(OBJS) 
	$(RM) $@
	$(CC) -o $@ $(OBJS) $(LDOPTIONS) $(LDLIBS)



