source: network-demos/dnstest/Makefile @ 8cfa3aa

4.11netdemos-4-5-branchnetwork-demos-4-10-branchnetwork-demos-4-6-branchnetwork-demos-4-7-branchnetwork-demos-4-8-branchnetwork-demos-4-9-branchrtems-4-5-branch
Last change on this file since 8cfa3aa was 8cfa3aa, checked in by Joel Sherrill <joel.sherrill@…>, on 08/21/98 at 13:13:06

New files

  • Property mode set to 100644
File size: 1.2 KB
Line 
1SAMPLE=dnstest
2PGM=${ARCH}/$(SAMPLE).exe
3
4MANAGERS=io event semaphore
5
6# C source names, if any, go here -- minus the .c
7C_PIECES= init  test
8C_FILES=$(C_PIECES:%=%.c)
9C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
10
11H_FILES=
12
13DOCTYPES=
14DOCS=$(DOCTYPES:%=$(SAMPLE).%)
15
16SRCS=$(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
17OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
18
19PRINT_SRCS=$(DOCS)
20
21PGM=${ARCH}/$(SAMPLE).exe
22
23include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
24include $(RTEMS_CUSTOM)
25include $(PROJECT_ROOT)/make/leaf.cfg
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31DEFINES  +=
32CPPFLAGS +=
33CFLAGS   +=
34CFLAGS_LD += -Wl,--defsym -Wl,HeapSize=0xC0000
35CFLAGS_OPTIMIZE_V   +=
36CFLAGS_DEBUG_V   += -v -qrtems_debug
37
38LD_PATHS  +=
39LD_LIBS   +=
40
41#
42# Add your list of files to delete here.  The config files
43#  already know how to delete some stuff, so you may want
44#  to just run 'make clean' first to see what gets missed.
45#  'make clobber' already includes 'make clean'
46#
47
48CLEAN_ADDITIONS +=
49CLOBBER_ADDITIONS +=
50
51all:    ${ARCH} $(SRCS) $(PGM)
52
53${PGM}: $(OBJS) $(LINK_FILES)
54        $(make-exe)
55
56# Install the program(s), appending _g or _p as appropriate.
57# for include files, just use $(INSTALL)
58install:  all
59        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/tests
Note: See TracBrowser for help on using the repository browser.