mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-20 15:10:18 +01:00
14 lines
278 B
Makefile
14 lines
278 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 $@ $<
|
|
|
|
clean:
|
|
$(RM) aprstransmit *.o *.d *.bak *~
|
|
|