mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-04 23:02:02 +01:00
7fec736947
manage a single connection to the relay for all of its games. Works so far to the extent that the game's playable with all boards on the same device (with checkins about to come) as long as all boards are open. (Client doesn't handle opening closed games yet.)
85 lines
2.1 KiB
Makefile
85 lines
2.1 KiB
Makefile
# -*- mode: Makefile; -*-
|
|
# Copyright 2005-2009 by Eric House (xwords@eehouse.org). All rights
|
|
# reserved.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
CXX = g++
|
|
CC=$(CXX)
|
|
SRC = \
|
|
configs.cpp \
|
|
cref.cpp \
|
|
crefmgr.cpp \
|
|
dbmgr.cpp \
|
|
http.cpp \
|
|
lstnrmgr.cpp \
|
|
permid.cpp \
|
|
states.cpp \
|
|
timermgr.cpp \
|
|
tpool.cpp \
|
|
cidlock.cpp \
|
|
addrinfo.cpp \
|
|
devmgr.cpp \
|
|
xwrelay.cpp \
|
|
|
|
# STATIC ?= -static
|
|
GITINFO = gitversion.txt
|
|
HASH=$(shell git describe)
|
|
|
|
OBJ = $(patsubst %.cpp,%.o,$(SRC))
|
|
#LDFLAGS += -pthread -g -lmcheck $(STATIC)
|
|
LDFLAGS += -pthread -g $(STATIC) \
|
|
-L$(shell pg_config --libdir)
|
|
|
|
CPPFLAGS += -DSPAWN_SELF -g -Wall \
|
|
-I $(shell pg_config --includedir) \
|
|
-DSVN_REV=\"$(shell cat $(GITINFO) 2>/dev/null || echo -n $(HASH) )\"
|
|
# CPPFLAGS += -DDO_HTTP
|
|
# CPPFLAGS += -DHAVE_STIME
|
|
|
|
# turn on semaphore debugging
|
|
# CPPFLAGS += -DDEBUG_LOCKS
|
|
|
|
memdebug all: xwrelay rq
|
|
|
|
# Manual config in order to place -lpq after the .obj files as
|
|
# required by something Ubuntu did upgrading natty to oneiric
|
|
xwrelay: $(OBJ)
|
|
$(CXX) $(CPPFLAGS) $(LDFLAGS) -o $@ $^ -lpq
|
|
|
|
rq: rq.c
|
|
|
|
clean:
|
|
rm -f xwrelay $(OBJ) rq
|
|
|
|
tags:
|
|
etags *.cpp *.h
|
|
|
|
tarball:
|
|
@echo -n $(HASH) > $(GITINFO)
|
|
tar cvfz RELAY_SRC.tgz \
|
|
../relay/*.cpp \
|
|
../relay/*.h \
|
|
../relay/Makefile \
|
|
../relay/xwrelay.conf \
|
|
../relay/xwrelay.sh \
|
|
../relay/xwrelay.css \
|
|
../relay/$(GITINFO)
|
|
@rm -f $(GITINFO)
|
|
@echo "RELAY_SRC.tgz done"
|
|
|
|
help:
|
|
@echo $(MAKE) [STATIC=\"-static\"]
|
|
@echo $(MAKE) tarball
|