break up compile; new file

This commit is contained in:
ehouse 2005-03-30 02:00:15 +00:00
parent bf6837a9d0
commit c41dc77934

View file

@ -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