~ubuntu-branches/ubuntu/hoary/hypermail/hoary

« back to all changes in this revision

Viewing changes to src/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Yu Guanghui
  • Date: 2003-12-12 20:41:05 UTC
  • Revision ID: james.westby@ubuntu.com-20031212204105-5auqb4gsyrxoiksp
Tags: 2.1.8-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
# Installation program to use
25
25
INSTALL_PROG=@INSTALL@ 
26
26
 
27
 
SPLINTFLAGS=-Ipcre 
 
27
SPLINTFLAGS=
28
28
 
29
29
#WNOERROR=-Werror
30
30
#WARNINGS=$(WNOERROR) -ansi -pedantic -Wall -Wtraditional -Wshadow -Wpointer-arith -Wcast-qual -Wcast-align -Waggregate-return -Wstrict-prototypes -Wmissing-prototypes -Wnested-externs -Winline -Dlint
31
31
 
32
 
CFLAGS=@CFLAGS@ @INCLUDES@ -Ipcre -DTRIO_MINIMAL $(WARNINGS)
 
32
CFLAGS=@CFLAGS@ @INCLUDES@  -DTRIO_MINIMAL $(WARNINGS)
33
33
YACC=@YACC@
34
34
NETLIBS=@LIBS@
35
 
LDFLAGS=@LDFLAGS@ -Lpcre/.libs
 
35
LDFLAGS=@LDFLAGS@ 
36
36
MISC_LIBS= -lm -lpcre
37
37
OPT_LIBS=@EXTRA_LIBS@
38
38
 
58
58
.c.o:
59
59
        $(CC) -c $(CFLAGS) $<
60
60
 
61
 
all:    pcre/.libs/libpcre.a @FNV_DEP@ hypermail$(SUFFIX) mail$(SUFFIX) lang$(SUFFIX)
 
61
all:    @FNV_DEP@ hypermail$(SUFFIX) mail$(SUFFIX) lang$(SUFFIX)
62
62
 
63
63
pcre/.libs/libpcre.a:
64
64
        @cd pcre; $(MAKE) CC="$(CC)" CFLAGS="$(CFLAGS)"
124
124
        rm -f *.o .pure *qx *qv *.ln core
125
125
        rm -f .inslog tca.map lint.out splint.out
126
126
        rm -f getdate.c
127
 
        @cd pcre; $(MAKE) clean
128
127
        @(if test "$(FNV_DEP)" != "" ; then cd fnv; $(MAKE) clean; fi)
129
128
        @cd ../libcgi; $(MAKE) clean
130
129
 
131
130
clobber: clean
132
 
        @cd pcre; rm -f *.lock
133
131
        @(if test "$(FNV_DEP)" != "" ; then cd fnv; $(MAKE) clobber; fi)
134
132
        @cd ../libcgi; $(MAKE) clobber
135
133
 
136
134
distclean: clobber
137
 
        @cd pcre; $(MAKE) distclean
138
135
        @(if test "$(FNV_DEP)" != "" ; then cd fnv; $(MAKE) distclean; fi)
139
136
        @cd ../libcgi; $(MAKE) distclean
140
137