File: Makefile

package info (click to toggle)
inn2 2.4.5-5
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 8,912 kB
  • ctags: 7,860
  • sloc: ansic: 85,104; perl: 11,427; sh: 9,863; makefile: 2,498; yacc: 1,563; python: 298; lex: 252; tcl: 7
file content (44 lines) | stat: -rw-r--r-- 1,223 bytes parent folder | download
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
41
42
43
44
##  $Id: Makefile 6299 2003-04-20 19:04:14Z vinocur $
##
##  All the actual installation work of any files in the samples directory
##  is done via the site directory, so that one can maintain one's news
##  configuration in the site directory and use make commands to update the
##  server automatically.  All this Makefile does is run fixscript on a few
##  files that don't need the full power of configure (and clean up after
##  them on make clean).

include ../Makefile.global

top	      = ..

ALL           = nnrpd_auth.pl nnrpd_access.pl \
                nnrpd_auth_wrapper.pl nnrpd_access_wrapper.pl

EXTRA         = inn.conf innreport.conf newsfeeds sasl.conf

all: $(ALL) $(EXTRA)

clean:
	rm -f $(ALL)

clobber distclean: clean
	rm -f $(EXTRA)

install:
depend:

profiled: all

$(EXTRA) $(FIXSCRIPT):
	@echo Run configure before running make.  See INSTALL for details.
	@exit 1


##  Build rules.

FIX             = $(FIXSCRIPT)

nnrpd_auth.pl:			nnrpd_auth.pl.in           $(FIX) ; $(FIX) $@.in
nnrpd_access.pl:		nnrpd_access.pl.in         $(FIX) ; $(FIX) $@.in
nnrpd_auth_wrapper.pl:		nnrpd_auth_wrapper.pl.in   $(FIX) ; $(FIX) $@.in
nnrpd_access_wrapper.pl:	nnrpd_access_wrapper.pl.in $(FIX) ; $(FIX) $@.in