mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-07 15:23:59 +00:00
The beginning of Linux build support.
This commit is contained in:
parent
12d55cef37
commit
bb602947f4
31 changed files with 273 additions and 36 deletions
13
APRSTransmit/Makefile
Normal file
13
APRSTransmit/Makefile
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
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 *~
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue