# change the following line for the Motif header file location on your
# system in case it's not in the default location.
MINCLUDE = /usr/include/motif

# change the following line for Motif libraries location on your
# system in case they are not in the default location.
MLIBS = 

# DEBUG = -g -Bstatic
DEBUG = -Bstatic
CFLAGS = $(DEBUG) -I$(MINCLUDE)

# Note: you may need to change the -lmXt to -lXt if the X Toolkit for
# Motif is named libXt.a instead of libmXt.a on your system.
LIBS =  -L$(MLIBS) -lXm -lmXt -lX11

xca: xca.o menus.o
	cc $(CFLAGS) -o $@ xca.o menus.o $(LIBS)
	@echo done!

