mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-01-07 00:40:00 +01:00
14 lines
247 B
Makefile
14 lines
247 B
Makefile
|
|
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 *~
|
||
|
|
|