# flavor of UNIX in use
# type of CPU
# paths to libraries
# define(m4FORTLIBS, -lI77 -lF77)dnl
# final resting place for installed software
# directory for include files
# where help files will live
# directory for tutorials 
# location of sources at CARL
# path to manual pages
# path to sys include directory
# path to vaxuba include directory
# dac/adc converters to use: one of ds (DSC200), ai (Digisound-16)
# sound filesystem to use: may be either csound or bicsf

LIBDIR =	/carl/lib
CFLAGS =	-O -bsd

PROG =		libdgl
OBJS =		crack.o floatsav.o sfexpr.o funstuff.o summation.o \
		rd_func_fid.o rd_func_file.o

.c.o:
		${CC} ${CFLAGS} -c $*.c
		-ld -x -r $*.o
		mv a.out $*.o

${PROG}: 	${OBJS}
		ar r ../libcarl.a ${OBJS}

clean:
		rm -f ${OBJS}

pub:
		cp * /carl/src/lib/${PROG}
