From 428730348b3dff34508b368bb285c55235807eb8 Mon Sep 17 00:00:00 2001 From: dockes Date: Wed, 15 Nov 2006 07:27:42 +0000 Subject: [PATCH] *** empty log message *** --- src/internfile/Makefile | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 src/internfile/Makefile diff --git a/src/internfile/Makefile b/src/internfile/Makefile new file mode 100644 index 00000000..69ffb566 --- /dev/null +++ b/src/internfile/Makefile @@ -0,0 +1,23 @@ +# @(#$Id: Makefile,v 1.1 2006-11-15 07:27:42 dockes Exp $ (C) 2005 J.F.Dockes +depth = .. +include $(depth)/mk/sysconf + +# Only test executables get build in here +PROGS = internfile unacpp textsplit rclconfig + +all: $(BIGLIB) $(PROGS) + +$(BIGLIB): force + cd $(depth)/lib;$(MAKE) +force: + +INTERNFILE_OBJS= trinternfile.o $(BIGLIB) $(MIMELIB) +internfile : $(INTERNFILE_OBJS) + $(CXX) $(ALL_CXXFLAGS) -o internfile $(INTERNFILE_OBJS) \ + $(LIBICONV) $(LIBSYS) +trinternfile.o : internfile.cpp + $(CXX) $(ALL_CXXFLAGS) -DTEST_INTERNFILE -c -o trinternfile.o \ + internfile.cpp +clean: + rm -f *.o $(PROGS) +