mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-20 15:10:18 +01: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 *~
|
|
|