mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-19 14:50:17 +01:00
17 lines
344 B
Makefile
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 *~
|
|
|