4.104.114.84.95
Last change
on this file since 352c9b2 was
352c9b2,
checked in by Joel Sherrill <joel.sherrill@…>, on 11/09/99 at 22:07:23
|
This patch adds the basic framework for the ITRON 3.0 API implementation
for RTEMS.
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | top_srcdir = @top_srcdir@ |
---|
8 | top_builddir = .. |
---|
9 | subdir = tmitronsem01 |
---|
10 | |
---|
11 | RTEMS_ROOT = @RTEMS_ROOT@ |
---|
12 | PROJECT_ROOT = @PROJECT_ROOT@ |
---|
13 | |
---|
14 | VPATH = @srcdir@ |
---|
15 | |
---|
16 | TEST = tmitronsem01 |
---|
17 | |
---|
18 | MANAGERS = all |
---|
19 | |
---|
20 | # C source names, if any, go here -- minus the .c |
---|
21 | C_PIECES = init |
---|
22 | C_FILES = $(C_PIECES:%=%.c) |
---|
23 | C_O_FILES = $(C_PIECES:%=${ARCH}/%.o) |
---|
24 | |
---|
25 | H_FILES = system.h |
---|
26 | |
---|
27 | DOCTYPES = doc |
---|
28 | DOCS = $(DOCTYPES:%=$(TEST).%) |
---|
29 | |
---|
30 | SRCS = $(DOCS) $(C_FILES) $(H_FILES) |
---|
31 | OBJS = $(C_O_FILES) |
---|
32 | |
---|
33 | PRINT_SRCS = $(DOCS) |
---|
34 | |
---|
35 | PGM = ${ARCH}/$(TEST).exe |
---|
36 | |
---|
37 | include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg |
---|
38 | include $(RTEMS_ROOT)/make/leaf.cfg |
---|
39 | |
---|
40 | INSTALL_CHANGE = @INSTALL_CHANGE@ |
---|
41 | PACKHEX = @PACKHEX@ |
---|
42 | |
---|
43 | # |
---|
44 | # (OPTIONAL) Add local stuff here using += |
---|
45 | # |
---|
46 | |
---|
47 | DEFINES += |
---|
48 | CPPFLAGS += -I$(srcdir)/../include |
---|
49 | CFLAGS += |
---|
50 | |
---|
51 | LD_PATHS += |
---|
52 | LD_LIBS += |
---|
53 | LDFLAGS += |
---|
54 | |
---|
55 | # |
---|
56 | # Add your list of files to delete here. The config files |
---|
57 | # already know how to delete some stuff, so you may want |
---|
58 | # to just run 'make clean' first to see what gets missed. |
---|
59 | # 'make clobber' already includes 'make clean' |
---|
60 | # |
---|
61 | |
---|
62 | CLEAN_ADDITIONS += |
---|
63 | CLOBBER_ADDITIONS += |
---|
64 | |
---|
65 | all: ${ARCH} $(SRCS) $(PGM) |
---|
66 | @$(INSTALL_VARIANT) -m 755 ${PGM} $(PROJECT_RELEASE)/tests |
---|
67 | |
---|
68 | ${PGM}: $(OBJS) $(LINK_FILES) |
---|
69 | $(make-exe) |
---|
70 | |
---|
71 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status |
---|
72 | cd $(top_builddir) \ |
---|
73 | && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status |
---|
Note: See
TracBrowser
for help on using the repository browser.