mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-03 11:19:37 +02:00
14 lines
265 B
Makefile
14 lines
265 B
Makefile
|
|
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 *~
|
||
|
|
|