#  Makefile from ObjectProDSP 0.2
#  Copyright (C) 1994 1995, Mountain Math Software, All rights reserved.
#  Licensed for free use and distribution under version 2 of the Gnu General
#  Public License. Please see file COPYING for details and restrictions.
#  
#  ObjectProDSP is a trademark of Mountain Math Software.
#  
include ${OPD_ROOT}/scripts/Makefile_head
DEFAULT : ../flt ../Makefile ../ad_bp
FLAGS =  -g -I../../../src/include

../Makefile: mmake examp_list node_list help_list  Makefile.base
	mmake
	mv makefile_out ../Makefile

mmake: mmake.cxx
	g++ mmake.cxx ${FLAGS} -lm -o mmake

../flt: flt.c
	gcc flt.c ${FLAGS} -o ../flt

../ad_bp : ad_bp.cxx
	g++ ad_bp.cxx ${FLAGS} -o ../ad_bp

clean :
	-rm mmake *.o

.PHONY : DEFAULT clean
