ircDDBGateway/APRSTransmit/Makefile

17 lines
364 B
Makefile
Raw Normal View History

OBJECTS = APRSParser.o APRSTransmitAppD.o APRSTransmit.o
2018-05-15 20:32:38 +02:00
all: aprstransmitd
2018-05-15 20:32:38 +02:00
aprstransmitd: $(OBJECTS)
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o aprstransmitd
2018-05-15 20:32:38 +02:00
%.o: %.cpp
$(CXX) -DwxUSE_GUI=0 $(CFLAGS) -I../Common -c -o $@ $<
2018-05-15 20:32:38 +02:00
2018-05-15 22:19:47 +02:00
install:
install -g bin -o root -m 0775 aprstransmitd $(BINDIR)
2018-05-15 22:19:47 +02:00
2018-05-15 20:32:38 +02:00
clean:
$(RM) aprstransmitd *.o *.d *.bak *~
2018-05-15 20:32:38 +02:00