CPPFLAGS = -g -DLINUX
OBJS = Instrument.o rtprofile.o profile.o

all: inst

inst: $(OBJS)

clean:
	rm -f *.o

