diff options
Diffstat (limited to 'WWW')
-rw-r--r-- | WWW/Library/Implementation/makefile.in | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/WWW/Library/Implementation/makefile.in b/WWW/Library/Implementation/makefile.in new file mode 100644 index 00000000..fe4c0eed --- /dev/null +++ b/WWW/Library/Implementation/makefile.in @@ -0,0 +1,75 @@ +# Make WWW under unix for a.n.other unix system (bsd) +# Use this as a template + +# For W3 distribution, machine type for subdirectories +WWW_MACH = Implementation +WWWINC = $(top_srcdir)/WWW/Library/Implementation + +# The ASIS repository's name for the machine we are on +ASIS_MACH = hardware/os + +ECHO = @DONT_ECHO_CC@ +LFLAGS = + +prefix = @prefix@ +exec_prefix = @exec_prefix@ +top_srcdir = @top_srcdir@ +srcdir = @srcdir@ +VPATH = $(srcdir) + +LYFLAGS = # FIXME: set in parent makefile + +CC = @CC@ +DEFS = @DEFS@ +CPPFLAGS = @CPPFLAGS@ +CPPOPTS = $(DEFS) $(CPPFLAGS) $(LYFLAGS) \ + -I../../.. \ + -I../../../src \ + -I../../../intl \ + -I$(top_srcdir) \ + -I$(top_srcdir)/src \ + -I$(top_srcdir)/intl \ + -I$(WWWINC) +LY_CFLAGS = @CFLAGS@ +CFLAGS = $(CPPOPTS) $(LY_CFLAGS) +LINT = @LINT@ + +# Directory for installed binary: +BINDIR = @bindir@ + +# Where is the W3 object library to be installed (not normally done)? +LIBDIR = $(WWWINC) + +#_________________ OK if normal W3 distribution +# Where is the WWW source root? +WWW = $(top_srcdir)/WWW + +# Where should temporary (object) files go? +WTMP = ../.. + +@make_include_left@$(WWW)/Library/Implementation/Version.make@make_include_right@ +@make_include_left@$(WWW)/Library/Implementation/CommonMakefile@make_include_right@ + +# Override values set in CommonMakefile + +RANLIB = @RANLIB@ + +all : $(LOB)/libwww.a + +lint: + $(LINT) $(LINTOPTS) $(CPPOPTS) $(srcdir)/../Implementation/*.c > ../../../lint.libwww + +.SUFFIXES: .i .h .html + +.c.o: +@RULE_CC@ + @ECHO_CC@$(CC) $(CPPOPTS) $(CFLAGS) -c $(srcdir)/$*.c + +.c.i: +@RULE_CC@ + @ECHO_CC@$(CPP) -C $(CPPOPTS) $(srcdir)/$*.c >$@ + +depend : + makedepend -fmakefile -- $(CFLAGS) -- $(CFILES) + +# DO NOT DELETE THIS LINE -- make depend depends on it. |