# DBOX common include file
# nothing to adjust here

# include configuration file

include ../config

# the first target

firsttarget: all

# compile plain C files

#.c.o:
#	$(CC) $(CFLAGS) -c $<

# compile C++ files

#.C.o:
#	$(CPP) $(CPPFLAGS) -c $<

# generate dependancies

dep depend:
	if [ ! "$(SRC)" = "" ] ; then $(CPP) -M $(SRC) $(CFLAGS) > .depend ; fi

distclean: clean

