The beginning of Linux build support.

This commit is contained in:
Jonathan Naylor 2018-05-15 19:32:38 +01:00
parent 12d55cef37
commit bb602947f4
31 changed files with 273 additions and 36 deletions

13
VoiceTransmit/Makefile Normal file
View file

@ -0,0 +1,13 @@
OBJECTS = VoiceStore.o VoiceTransmit.o
all: voicetransmit
voicetransmit: $(OBJECTS)
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o voicetransmit
%.o: %.cpp
$(CXX) $(CFLAGS) -I../Common -c -o $@ $<
clean:
$(RM) voicetransmit *.o *.d *.bak *~