CC =bcc32
TARGETS = blh_ecef.exe ecef_enu.exe
OBJS1 = blh_ecef.obj math_util.obj
OBJS2 = ecef_enu.obj blh_ecef_s.obj math_util.obj
all:	$(TARGETS)

blh_ecef.exe:	$(OBJS1)
	$(CC) -e$@ $(OBJS1)

ecef_enu.exe:	$(OBJS2)
	$(CC) -e$@ $(OBJS2)

clean:
	del *.exe
	del *.obj
	del *.tds

