
#
# FPAC PROJECT - F6FBB 1998
#

include ../make.defs

all: ../bin/calibrate ../shbin/calibrate ../bin/remote ../shbin/remote

../bin/calibrate: calibrate.o
	$(LD) $(LDFLAGS) -o ../bin/calibrate calibrate.o $(LIBS)
../shbin/calibrate: $(LISTEN_OBJS)
	$(LD) $(SHLDFLAGS) -o ../shbin/calibrate calibrate.o $(SHLIBS)

../bin/remote: remote.o
	$(LD) $(LDFLAGS) -o ../bin/remote remote.o $(LIBS)
../shbin/remote: $(LISTEN_OBJS)
	$(LD) $(SHLDFLAGS) -o ../shbin/remote remote.o $(SHLIBS)

clean:
	rm -f *.o *~ *.bak *.orig core

strip:
	strip ../bin/calibrate
	strip ../shbin/calibrate
	strip ../bin/remote
	strip ../shbin/remote

