#CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS) #LIBS=$(EXTRA_LIBS) $(LIBS1) #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES) #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS) CC=@CC@ RANLIB=@RANLIB@ AR=@AR@ RM=@RM@ CFLAGS=@CFLAGS@ @OPTIM@ LIBS=@LIBS@ LDFLAGS=@LDFLAGS@ $(LIBS) INCDIR=../include INCDIR1=../misc/@OSDIR@ INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I../misc/unix #LIB=@LIBPREFIX@apr.a OBJS=apr_cpystrn.o \ apr_fnmatch.o \ apr_execve.o \ apr_md5.o \ apr_pools.o \ apr_signal.o \ apr_snprintf.o \ apr_tables.o \ apr_hash.o \ apr_getpass.o \ apr_strnatcmp.o .c.o: $(CC) $(CFLAGS) -c $(INCLUDES) $< all: $(OBJS) clean: $(RM) -f *.o *.a *.so distclean: clean -$(RM) -f Makefile #$(LIB): $(OBJS) # $(RM) -f $@ # $(AR) cr $@ $(OBJS) # $(RANLIB) $@ # # We really don't expect end users to use this rule. It works only with # gcc, and rebuilds Makefile.in. You have to re-run configure after # using it. # depend: cp Makefile.in Makefile.in.bak \ && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \ && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \ && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \ -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \ > Makefile.in \ && rm Makefile.new # DO NOT REMOVE apr_cpystrn.o: apr_cpystrn.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_lib.h $(INCDIR)/apr_general.h $(INCDIR)/apr.h \ $(INCDIR)/apr_errno.h $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_thread_proc.h apr_execve.o: apr_execve.c $(INCDIR)/apr_private.h apr_fnmatch.o: apr_fnmatch.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_fnmatch.h $(INCDIR)/apr_errno.h $(INCDIR)/apr.h \ $(INCDIR)/apr_lib.h $(INCDIR)/apr_general.h \ $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_thread_proc.h apr_getpass.o: apr_getpass.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_lib.h $(INCDIR)/apr_general.h $(INCDIR)/apr.h \ $(INCDIR)/apr_errno.h $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_thread_proc.h apr_hash.o: apr_hash.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_general.h $(INCDIR)/apr.h $(INCDIR)/apr_errno.h \ $(INCDIR)/apr_pools.h $(INCDIR)/apr_lib.h $(INCDIR)/apr_file_io.h \ $(INCDIR)/apr_time.h $(INCDIR)/apr_thread_proc.h \ $(INCDIR)/apr_hash.h apr_md5.o: apr_md5.c $(INCDIR)/apr_private.h $(INCDIR)/apr_md5.h \ $(INCDIR)/apr_lib.h $(INCDIR)/apr_general.h $(INCDIR)/apr.h \ $(INCDIR)/apr_errno.h $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_thread_proc.h $(INCDIR)/apr_xlate.h apr_pools.o: apr_pools.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_portable.h $(INCDIR)/apr_general.h $(INCDIR)/apr.h \ $(INCDIR)/apr_errno.h $(INCDIR)/apr_thread_proc.h \ $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_network_io.h $(INCDIR)/apr_lock.h \ $(INCDIR)/apr_pools.h $(INCDIR)/apr_lib.h ../misc/unix/misc.h \ $(INCDIR)/apr_getopt.h apr_signal.o: apr_signal.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_lib.h $(INCDIR)/apr_general.h $(INCDIR)/apr.h \ $(INCDIR)/apr_errno.h $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_thread_proc.h apr_snprintf.o: apr_snprintf.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_lib.h $(INCDIR)/apr_general.h $(INCDIR)/apr.h \ $(INCDIR)/apr_errno.h $(INCDIR)/apr_file_io.h $(INCDIR)/apr_time.h \ $(INCDIR)/apr_thread_proc.h apr_strnatcmp.o: apr_strnatcmp.c $(INCDIR)/apr_strnatcmp.h apr_tables.o: apr_tables.c $(INCDIR)/apr_private.h \ $(INCDIR)/apr_general.h $(INCDIR)/apr.h $(INCDIR)/apr_errno.h \ $(INCDIR)/apr_pools.h $(INCDIR)/apr_lib.h $(INCDIR)/apr_file_io.h \ $(INCDIR)/apr_time.h $(INCDIR)/apr_thread_proc.h \ ../misc/unix/misc.h $(INCDIR)/apr_getopt.h