#  Makefile from ObjectProDSP 0.1
#  Copyright (C) 1994, 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.
#  
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.C
	g++ mmake.C ${FLAGS} -lm -o mmake

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

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

clean :
	-rm mmake *.o

.PHONY : DEFAULT clean
