diff options
author | gstein <gstein@13f79535-47bb-0310-9956-ffa450edef68> | 2001-01-09 11:06:28 +0000 |
---|---|---|
committer | gstein <gstein@13f79535-47bb-0310-9956-ffa450edef68> | 2001-01-09 11:06:28 +0000 |
commit | 9d1275e1a983a06ce2634ea7fda44e1da74c83b7 (patch) | |
tree | e51da863a0ead61ec23171879295613e7cd48b68 /dso/os390/Makefile.in | |
parent | 95a1aa1fa02cb63a6447b0fe8528f5ba03eacbfe (diff) | |
download | libapr-9d1275e1a983a06ce2634ea7fda44e1da74c83b7.tar.gz |
Libtool-ize APR.
To simplify the task, I also shifted the Makefiles to include a rules.mk
(based on APRUTIL's with a few tweaks). Still needs some work to remove the
INCLUDES setup in all the Makefiles (these can be shared).
buildconf now does more work (and generates some output)
aclocal.m4 is based on a number of M4 files, rather than standalone
apr/test/ has been updated but is probably broken in a few ways.
objs/ is now gone. we link directly from the .lo files.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61037 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dso/os390/Makefile.in')
-rw-r--r-- | dso/os390/Makefile.in | 34 |
1 files changed, 5 insertions, 29 deletions
diff --git a/dso/os390/Makefile.in b/dso/os390/Makefile.in index 134195b68..1fed55114 100644 --- a/dso/os390/Makefile.in +++ b/dso/os390/Makefile.in @@ -1,34 +1,10 @@ -RM=@RM@ -CC=@CC@ -RANLIB=@RANLIB@ -CFLAGS=@CFLAGS@ @OPTIM@ -LIBS=@LIBS@ -LDFLAGS=@LDFLAGS@ $(LIBS) -INCDIR=../../include -INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch -MKDEP=../../helpers/mkdep.sh - -LIB=libdso.a - -OBJS=dso.o - -.c.o: - $(CC) $(CFLAGS) -c $(INCLUDES) $< -all: $(LIB) +TARGETS = dso.lo -clean: - $(RM) -f *.o *.a *.so +# bring in rules.mk for standard functionality +@INCLUDE_RULES@ -$(LIB): $(OBJS) - $(RM) -f $@ - $(AR) cr $@ $(OBJS) - $(RANLIB) $@ - -distclean: clean - -$(RM) -f Makefile - -depend: - $(MKDEP) $(INCLUDES) $(CFLAGS) *.c +INCDIR=../../include +INCLUDES=-I$(INCDIR) -I$(INCDIR)/arch # DO NOT REMOVE |