ircDDBGateway/TextTransmit/Makefile

17 lines
313 B
Makefile
Raw Normal View History

2018-05-15 20:32:38 +02:00
OBJECTS = TextTransmit.o
all: texttransmit
texttransmit: $(OBJECTS)
$(CXX) $(OBJECTS) ../Common/Common.a $(LDFLAGS) $(LIBS) -o texttransmit
%.o: %.cpp
$(CXX) $(CFLAGS) -I../Common -c -o $@ $<
2018-05-15 22:19:47 +02:00
install:
install -g bin -o root -m 0775 texttransmit $(BINDIR)
2018-05-15 20:32:38 +02:00
clean:
$(RM) texttransmit *.o *.d *.bak *~