File: Makefile.in

package info (click to toggle)
roxen 1.2beta2-2
  • links: PTS
  • area: contrib
  • in suites: hamm
  • size: 16,948 kB
  • ctags: 8,589
  • sloc: ansic: 89,632; asm: 8,431; sh: 2,915; makefile: 1,787; cpp: 377
file content (40 lines) | stat: -rw-r--r-- 856 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#
#  Makefile for FastCGI application library
#
#  Open Market, Inc.
#
#  $Id: Makefile.in,v 1.3 1997/10/15 02:21:24 grubba Exp $
#
SRCDIR=@srcdir@
prefix=@prefix@
VPATH=@srcdir@

SHELL	= /bin/sh
CC	= @CC@
INCLUDEDIR  = -I$(SRCDIR)/../include -I../include -I. -I..
CFLAGSUP=
CFLAGS	= $(CFLAGSUP) @CFLAGS@ @CCDEFS@ @PROFILE@ $(INCLUDEDIR) 
RANLIB	= @RANLIB@
LIBOBJS	= @LIBOBJS@

OBJS	    = fcgiapp.o fcgi_stdio.o $(LIBOBJS)
INCLUDES    = $(INCLUDEDIR)/fastcgi.h $(INCLUDEDIR)/fcgiapp.h \
	      $(INCLUDEDIR)/fcgimisc.h $(INCLUDEDIR)/fcgiappmisc.h \
	      $(INCLUDEDIR)/fcgi_stdio.h


all: libfcgi.a

libfcgi.a: $(OBJS)
	ar cr libfcgi.a $(OBJS)
	$(RANLIB) libfcgi.a

clean:
	rm -f *.a *.o core.* errs *~ \#* TAGS *.E a.out

# ----------------------------------------------------------------------------

fcgiapp.o: fcgiapp.c 

fcgi_stdio.o: fcgi_stdio.c