File: NWGNUmakefile

package info (click to toggle)
apache2 2.4.64-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 59,104 kB
  • sloc: ansic: 211,971; python: 13,977; perl: 11,307; sh: 7,102; php: 1,315; javascript: 1,314; awk: 749; makefile: 712; lex: 374; yacc: 161; xml: 2
file content (51 lines) | stat: -rw-r--r-- 969 bytes parent folder | download | duplicates (7)
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
45
46
47
48
49
50
51
#
# Get the 'head' of the build environment.  This includes default targets and
# paths to tools
#

include $(AP_WORK)/build/NWGNUhead.inc

#
# build this level's files

#
# If there is an NLM target, put it here
#
TARGET_nlm = \
	$(OBJDIR)/ab.nlm \
	$(OBJDIR)/htpasswd.nlm \
	$(OBJDIR)/htdigest.nlm \
	$(OBJDIR)/htdbm.nlm \
	$(OBJDIR)/htcacheclean.nlm \
	$(OBJDIR)/httxt2dbm.nlm \
	$(OBJDIR)/logres.nlm \
	$(OBJDIR)/rotlogs.nlm \
	$(EOLIST)

#
# implement targets and dependancies (leave this section alone)
#

libs :: $(OBJDIR) $(TARGET_lib)

nlms :: libs $(TARGET_nlm)

#
# Updated this target to create necessary directories and copy files to the 
# correct place.  (See $(AP_WORK)/build/NWGNUhead.inc for examples)
#
install :: nlms FORCE
	$(call COPY,$(OBJDIR)/*.nlm, $(INSTALLBASE)/bin/)

#
# Any specialized rules here
#

#
# Include the 'tail' makefile that has targets that depend on variables defined
# in this makefile
#

include $(APBUILD)/NWGNUtail.inc