source: network-demos/http/Makefile @ 631f794

4.11network-demos-4-10-branchnetwork-demos-4-8-branchnetwork-demos-4-9-branch
Last change on this file since 631f794 was d51d8b5, checked in by Joel Sherrill <joel.sherrill@…>, on 08/31/01 at 18:11:44

2001-08-30 Joel Sherrill <joel@…>

  • README, networkconfig.h, netdemo/README, tftpTest/test.c: Merged missing stuff from 4.5 branch.
  • http/Makefile, http/init.c: Minor modifications to improve buildability.
  • Property mode set to 100644
File size: 1.6 KB
Line 
1#
2#  $Id$
3#
4
5SAMPLE=http
6PGM=${ARCH}/$(SAMPLE).exe
7
8MANAGERS=io event semaphore timer rate_monotonic
9
10# C source names, if any, go here -- minus the .c
11C_PIECES=init
12C_FILES=$(C_PIECES:%=%.c)
13C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
14
15H_FILES=
16
17DOCTYPES=
18DOCS=$(DOCTYPES:%=$(SAMPLE).%)
19
20SRCS=$(DOCS) $(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
21OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
22
23PRINT_SRCS=$(DOCS)
24
25PGM=${ARCH}/$(SAMPLE).exe
26
27include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
28include $(RTEMS_CUSTOM)
29include $(PROJECT_ROOT)/make/leaf.cfg
30
31#
32# (OPTIONAL) Add local stuff here using +=
33#
34
35DEFINES  +=
36CPPFLAGS +=
37CFLAGS   +=
38CFLAGS_LD += -Wl,--defsym -Wl,HeapSize=0xC0000
39CFLAGS_OPTIMIZE_V   +=
40CFLAGS_DEBUG_V   += -v -qrtems_debug
41
42LD_PATHS  +=
43LD_LIBS   +=
44NATIVE_OBJ = $(shell $(OBJCOPY) 2>&1  | grep copy: | cut -d':' -f3 | cut -d' ' -f2)
45
46#
47# Add your list of files to delete here.  The config files
48#  already know how to delete some stuff, so you may want
49#  to just run 'make clean' first to see what gets missed.
50#  'make clobber' already includes 'make clean'
51#
52
53CLEAN_ADDITIONS +=
54CLOBBER_ADDITIONS +=
55
56all:    ${ARCH} $(SRCS) $(PGM)
57
58${PGM}: $(OBJS) $(LINK_FILES)
59        cd rootfs ; tar cf ../$(ARCH)/tarfile web etc
60        cp $(ARCH)/tarfile .
61        $(OBJCOPY) -I binary -O $(NATIVE_OBJ) tarfile $(ARCH)/tarfile.o
62        $(LD) -r -o $(ARCH)/temp.o  $(ARCH)/init.o $(ARCH)/tarfile.o
63        $(MV) $(ARCH)/temp.o  $(ARCH)/init.o
64        $(RM) $(ARCH)/temp.o
65        $(make-exe)
66
67# Install the program(s), appending _g or _p as appropriate.
68# for include files, just use $(INSTALL)
69install:  all
70        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/tests
Note: See TracBrowser for help on using the repository browser.