source: network-demos/http/Makefile @ 5e49d0d

4.11network-demos-4-10-branchnetwork-demos-4-8-branchnetwork-demos-4-9-branch
Last change on this file since 5e49d0d was 058a7a0, checked in by Joel Sherrill <joel.sherrill@…>, on 06/21/07 at 19:15:39

2007-06-21 Joel Sherrill <joel.sherrill@…>

  • Makefile: Remove tarfile when make clean.
  • Property mode set to 100644
File size: 1.6 KB
RevLine 
[4018538]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  +=
[cf5b3fa]43LD_LIBS   += -lhttpd
44LD_LIBS   += -lftpd
[d51d8b5]45NATIVE_OBJ = $(shell $(OBJCOPY) 2>&1  | grep copy: | cut -d':' -f3 | cut -d' ' -f2)
[4018538]46
47#
48# Add your list of files to delete here.  The config files
49#  already know how to delete some stuff, so you may want
50#  to just run 'make clean' first to see what gets missed.
51#  'make clobber' already includes 'make clean'
52#
53
[058a7a0]54CLEAN_ADDITIONS += tarfile
[4018538]55CLOBBER_ADDITIONS +=
56
57all:    ${ARCH} $(SRCS) $(PGM)
58
59${PGM}: $(OBJS) $(LINK_FILES)
[d51d8b5]60        cd rootfs ; tar cf ../$(ARCH)/tarfile web etc
[1a1b41cd]61        cp $(ARCH)/tarfile .
[d51d8b5]62        $(OBJCOPY) -I binary -O $(NATIVE_OBJ) tarfile $(ARCH)/tarfile.o
[1a1b41cd]63        $(LD) -r -o $(ARCH)/temp.o  $(ARCH)/init.o $(ARCH)/tarfile.o
[4018538]64        $(MV) $(ARCH)/temp.o  $(ARCH)/init.o
65        $(RM) $(ARCH)/temp.o
66        $(make-exe)
67
68# Install the program(s), appending _g or _p as appropriate.
69# for include files, just use $(INSTALL)
70install:  all
71        $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/tests
Note: See TracBrowser for help on using the repository browser.