ircDDBGateway/TextTransmit/Makefile

14 lines
247 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 $@ $<
clean:
$(RM) texttransmit *.o *.d *.bak *~