mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-23 00:20:18 +01:00
17 lines
332 B
Makefile
17 lines
332 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 $@ $<
|
|
|
|
install:
|
|
install -g bin -o root -m 0775 voicetransmit $(BINDIR)
|
|
|
|
clean:
|
|
$(RM) voicetransmit *.o *.d *.bak *~
|
|
|