mirror of
https://github.com/g4klx/ircDDBGateway.git
synced 2026-04-04 13:57:41 +00:00
The beginning of Linux build support.
This commit is contained in:
parent
12d55cef37
commit
bb602947f4
31 changed files with 273 additions and 36 deletions
14
ircDDB/Makefile
Normal file
14
ircDDB/Makefile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
OBJECTS = IRCClient.o IRCDDBApp.o IRCDDBClient.o IRCDDB.o IRCDDBMultiClient.o IRCMessage.o IRCMessageQueue.o IRCProtocol.o IRCReceiver.o \
|
||||
IRCutils.o
|
||||
|
||||
all: IRCDDB.a
|
||||
|
||||
IRCDDB.a: $(OBJECTS)
|
||||
$(AR) rcs IRCDDB.a $(OBJECTS)
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) $(CFLAGS) -c -o $@ $<
|
||||
|
||||
clean:
|
||||
$(RM) IRCDDB.a *.o *.d *.bak *~
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue