FILES = user.o add.o makex.o hello.o

BASE = /usr/lpp/dx

CC = acc

CFLAGS = -O -Dsun4  -I$(BASE)/include

LIBS   = -L$(BASE)/lib_sun4 -lDX -ly -ll -lX11 -lm -lansi



# make the Data Explorer executable
dxexec:		$(FILES)
		$(CC) $(LDFLAGS) $(FILES) $(LIBS) -o dxexec


# make the user.c file
user.c:		user_inboard.mdf
		mdf2c user_inboard.mdf > user.c
