ircDDBGateway/APRSTransmit/Makefile

14 lines
278 B
Makefile
Raw Normal View History

2018-05-15 20:32:38 +02:00
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 $@ $<
clean:
$(RM) aprstransmit *.o *.d *.bak *~