mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
31fa2ea442
Make default 'epoch' rather than NULL so constraint will work to prevent duplicates, and fix insertion SQL to not violate constraint.
94 lines
2.3 KiB
Makefile
94 lines
2.3 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 = \
|
|
addrinfo.cpp \
|
|
cidlock.cpp \
|
|
configs.cpp \
|
|
cref.cpp \
|
|
crefmgr.cpp \
|
|
ctrl.cpp \
|
|
dbmgr.cpp \
|
|
devmgr.cpp \
|
|
http.cpp \
|
|
lstnrmgr.cpp \
|
|
permid.cpp \
|
|
states.cpp \
|
|
strwpf.cpp \
|
|
timermgr.cpp \
|
|
tpool.cpp \
|
|
udpack.cpp \
|
|
udpager.cpp \
|
|
udpqueue.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)
|
|
LDFLAGS += -L$(shell pg_config --libdir)
|
|
LDFLAGS += $(shell pkg-config --libs glib-2.0)
|
|
LDFLAGS += -lrt
|
|
|
|
CPPFLAGS += -DSPAWN_SELF -g -Wall
|
|
CPPFLAGS += -I $(shell pg_config --includedir)
|
|
CPPFLAGS += -DSVN_REV=\"$(shell cat $(GITINFO) 2>/dev/null || echo -n $(HASH) )\"
|
|
CPPFLAGS += $(shell pkg-config --cflags glib-2.0)
|
|
# CPPFLAGS += -DLOG_UDP_PACKETS
|
|
# 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) -o $@ $^ -lpq $(LDFLAGS)
|
|
|
|
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
|