1#
2# Declare the sub-directories to be built here
3#
4
5SUBDIRS = \
6	$(EOLIST) 
7
8#
9# Get the 'head' of the build environment.  This includes default targets and
10# paths to tools
11#
12
13include $(APR_WORK)/build/NWGNUhead.inc
14
15#
16# build this level's files
17
18#
19# If there is an NLM target, put it here
20#
21TARGET_nlm = \
22	$(OBJDIR)/aprtest.nlm \
23	$(OBJDIR)/echod.nlm \
24	$(OBJDIR)/globalmutexchild.nlm \
25	$(OBJDIR)/mod_test.nlm \
26	$(OBJDIR)/proc_child.nlm \
27	$(OBJDIR)/readchild.nlm \
28	$(OBJDIR)/sockchild.nlm \
29	$(OBJDIR)/sockperf.nlm \
30	$(OBJDIR)/testatmc.nlm \
31	$(OBJDIR)/tryread.nlm \
32	$(EOLIST)
33
34#
35# implement targets and dependancies (leave this section alone)
36#
37
38libs :: $(OBJDIR) $(TARGET_lib)
39
40nlms :: libs $(TARGET_nlm)
41
42#
43# Updated this target to create necessary directories and copy files to the 
44# correct place.  (See $(APR_WORK)/build/NWGNUhead.inc for examples)
45#
46install :: nlms FORCE
47	$(call COPY,$(OBJDIR)/*.nlm,$(INSTALLBASE))
48
49#
50# Any specialized rules here
51#
52
53#
54# Include the 'tail' makefile that has targets that depend on variables defined
55# in this makefile
56#
57
58include $(APRBUILD)/NWGNUtail.inc
59
60