mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2025-12-06 05:32:02 +01:00
17 lines
332 B
Makefile
17 lines
332 B
Makefile
OBJECTS = TextTransmit.o
|
|
|
|
all: texttransmitd
|
|
|
|
texttransmitd: $(OBJECTS)
|
|
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o texttransmitd
|
|
|
|
%.o: %.cpp
|
|
$(CXX) -DwxUSE_GUI=0 $(CFLAGS) -I../Common -c -o $@ $<
|
|
|
|
install:
|
|
install -g bin -o root -m 0775 texttransmitd $(BINDIR)
|
|
|
|
clean:
|
|
$(RM) texttransmitd *.o *.d *.bak *~
|
|
|