#
# Makefile for DynThreads
# Copyright (C) 2002 Jussi Laako
#
# 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++
CXXFLAGS = -march=pentium2 -mcpu=athlon-xp -O2 -Wall -Werror #-ggdb
DEFS = -D_REENTRANT -D_THREAD_SAFE
INCS = #-I/usr/local/include
LIBS = -lpthread

PREFIX = /usr/local

SRCS = DynThreads.cc
OBJS = DynThreads.o

default: all

all: libDynThreads.a test

.cc.o: $(SRCS)
	$(CXX) $(CXXFLAGS) $(DEFS) $(INCS) -c $<

libDynThreads.a: $(OBJS)
	ar rc libDynThreads.a $(OBJS)
	ranlib libDynThreads.a

test: libDynThreads.a Test.cc
	$(CXX) $(CXXFLAGS) $(DEFS) -I. $(INCS) -o test Test.cc -L. -lDynThreads $(LIBS)

install: libDynThreads.a
	install -m 755 -d $(PREFIX)/include
	install -m 755 -d $(PREFIX)/lib
	install -m 644 DynThreads.hh $(PREFIX)/include
	install -m 644 libDynThreads.a $(PREFIX)/lib

clean:
	rm -f core *.o *~

cleanall:
	rm -f libDynThreads.a test DynThreads.dep core *.o *~

DynThreads.dep: $(SRCS)
	$(CXX) -MM $(DEFS) $(INCS) $(SRCS) >DynThreads.dep

include DynThreads.dep

