mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
break up compile; new file
This commit is contained in:
parent
bf6837a9d0
commit
c41dc77934
1 changed files with 9 additions and 4 deletions
|
@ -15,13 +15,18 @@
|
||||||
# along with this program; if not, write to the Free Software
|
# along with this program; if not, write to the Free Software
|
||||||
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
|
||||||
|
CC = g++
|
||||||
SRC = xwrelay.cpp cref.cpp ctrl.cpp
|
SRC = xwrelay.cpp cref.cpp ctrl.cpp tpool.cpp
|
||||||
|
OBJ = $(patsubst %.cpp,%.o,$(SRC))
|
||||||
LDFLAGS += -lpthread -g
|
LDFLAGS += -lpthread -g
|
||||||
|
CPPFLAGS += -g
|
||||||
|
|
||||||
all: xwrelay
|
all: xwrelay
|
||||||
|
|
||||||
xwrelay: $(SRC)
|
xwrelay: $(OBJ)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f xwrelay *.o
|
rm -f xwrelay $(OBJ)
|
||||||
|
|
||||||
|
tags:
|
||||||
|
etags *.cpp *.h
|
||||||
|
|
Loading…
Reference in a new issue