ircDDBGateway/APRSTransmit/Makefile
2018-05-15 21:19:47 +01:00

17 lines
344 B
Makefile

OBJECTS = APRSParser.o APRSTransmitApp.o APRSTransmit.o
all: aprstransmit
aprstransmit: $(OBJECTS)
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o aprstransmit
%.o: %.cpp
$(CXX) $(CFLAGS) -I../Common -c -o $@ $<
install:
install -g bin -o root -m 0775 aprstransmit $(BINDIR)
clean:
$(RM) aprstransmit *.o *.d *.bak *~