| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- #
- # Makefile for http-tiny
- # written by L. Demailly
- #
- # (c)1998 Laurent Demailly
- # (c)1996 Observatoire de Paris
- #
- # $Id: Makefile,v 1.2 1998/09/23 06:17:55 dl Exp $
- #
- #
- # Check the following :
- prefix=/usr/local
- # where to install executable
- BINDIR=$(prefix)/bin
- # where to put man pages
- MANDIR=$(prefix)/man
- # where to put lib
- LIBDIR=$(prefix)/lib
- # where to put include
- INCDIR=$(prefix)/include
- # Your compiler
- CC = gcc
- # Compile flags
- CDEBUGFLAGS = -O -Wmissing-prototypes -Wall -ansi -pedantic
- #CDEBUGFLAGS = -O
- # defines (needed for string ops on linux2/glibc for instance):
- DEFINES= -D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED
- # for HPUX (ansi)
- #DEFINES= -D_HPUX_SOURCE
- # for solaris some defines are needed for strncmp,... but can't find the good
- # one... maybe the one above (for linux) work too, I haven't checked yet.
- #DEFINES= -D
- # others, may need something...
- # Solaris
- #SYSLIBS= -lsocket -lnsl
- #INCLPATH =
- # mostly standard
- RM= rm -f
- CP = cp -f
- CHMOD= chmod
- MKDIR= mkdir -p
- AR = ar
- RANLIB = ranlib
- TAR= gtar
- # no edit should be needed below...
- CFLAGS = $(CDEBUGFLAGS) $(INCLPATH) $(DEFINES)
- LDFLAGS= $(CFLAGS) -L.
- LIBOBJS = http_lib.o
- TARGETS = libhttp.a http
- all: $(TARGETS)
- http: http.o libhttp.a
- $(CC) $(LDFLAGS) $@.o -lhttp $(SYSLIBS) -o $@
- libhttp.a: $(LIBOBJS)
- $(RM) $@
- $(AR) r $@ $(LIBOBJS)
- $(RANLIB) $@
- install: $(TARGETS)
- $(CP) http $(BINDIR)
- $(CP) libhttp.a $(LIBDIR)
- $(CP) man1/http.1 $(MANDIR)/man1
- $(CP) man3/http_lib.3 $(MANDIR)/man3
- $(CP) http_lib.h $(INCDIR)
- clean:
- $(RM) $(TARGETS)
- $(RM) *.tgz
- $(RM) *.o
- $(RM) *~
- $(RM) #*
- $(RM) core
- depend:
- makedepend $(INCLPATH) $(DEFINES) *.c
- # internal use
- man3: http_lib.c
- $(MKDIR) $@
- ( cd $@ ; c2man -i \"http_lib.h\" -ngv -ls ../http_lib.c )
- fdoc:
- $(RM) -r man3
- $(MAKE) man3
- pure:
- $(MAKE) clean
- $(MAKE) CC="purify gcc -g"
- tar:
- $(MAKE) clean
- $(RM) -r http-tiny-$(VERSION)
- $(RM) -f http-tiny-*.tar.gz
- $(MKDIR) http-tiny-$(VERSION)
- -$(CP) * http-tiny-$(VERSION)
- $(TAR) cf - man1 | (cd http-tiny-$(VERSION) ; $(TAR) xvf - )
- $(TAR) cf - man3 | (cd http-tiny-$(VERSION) ; $(TAR) xvf - )
- $(TAR) cvfz http-tiny-$(VERSION).tar.gz http-tiny-$(VERSION)
- #distrib: tar
- # $(CP) http-tiny-$(VERSION).tar.gz /poubelle/ftp/www/
- # $(CP) http-tiny-$(VERSION).tar.gz /users/dl/public_html/
- # DO NOT DELETE THIS LINE -- make depend depends on it.
|