4.104.114.84.95
Last change
on this file since 657be8f5 was
657be8f5,
checked in by Joel Sherrill <joel.sherrill@…>, on 02/03/99 at 16:20:38
|
New files from Juan Zamorano Flores <jzamora@…>
that are part of the addition of POSIX timers.
|
-
Property mode set to
100644
|
File size:
1.1 KB
|
Line | |
---|
1 | # |
---|
2 | # $Id$ |
---|
3 | # |
---|
4 | |
---|
5 | @SET_MAKE@ |
---|
6 | srcdir = @srcdir@ |
---|
7 | VPATH = @srcdir@ |
---|
8 | RTEMS_ROOT = @top_srcdir@ |
---|
9 | PROJECT_ROOT = @PROJECT_ROOT@ |
---|
10 | |
---|
11 | TEST=pxtimer |
---|
12 | |
---|
13 | MANAGERS=all |
---|
14 | |
---|
15 | # C source names, if any, go here -- minus the .c |
---|
16 | C_PIECES=psxtimertest |
---|
17 | C_FILES=$(C_PIECES:%=%.c) |
---|
18 | C_O_FILES=$(C_PIECES:%=${ARCH}/%.o) |
---|
19 | |
---|
20 | H_FILES= |
---|
21 | |
---|
22 | DOCTYPES=scn |
---|
23 | DOCS=$(DOCTYPES:%=$(TEST).%) |
---|
24 | |
---|
25 | SRCS=$(DOCS) $(C_FILES) $(H_FILES) |
---|
26 | OBJS=$(C_O_FILES) |
---|
27 | |
---|
28 | PRINT_SRCS=$(DOCS) |
---|
29 | |
---|
30 | PGM=${ARCH}/$(TEST).exe |
---|
31 | |
---|
32 | include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg |
---|
33 | include $(RTEMS_ROOT)/make/leaf.cfg |
---|
34 | |
---|
35 | # |
---|
36 | # (OPTIONAL) Add local stuff here using += |
---|
37 | # |
---|
38 | |
---|
39 | DEFINES += |
---|
40 | CPPFLAGS += |
---|
41 | CFLAGS += |
---|
42 | |
---|
43 | LD_PATHS += |
---|
44 | LD_LIBS += |
---|
45 | LDFLAGS += |
---|
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 | |
---|
54 | CLEAN_ADDITIONS += |
---|
55 | CLOBBER_ADDITIONS += |
---|
56 | |
---|
57 | all: ${ARCH} $(SRCS) $(PGM) |
---|
58 | $(INSTALL_VARIANT) -m 555 ${PGM} ${PROJECT_RELEASE}/tests |
---|
59 | $(INSTALL) $(srcdir)/$(TEST).scn \ |
---|
60 | ${PROJECT_RELEASE}/tests/screens/psxtests/$(TEST).scn |
---|
61 | |
---|
62 | ${PGM}: $(OBJS) $(LINK_FILES) |
---|
63 | $(make-exe) |
---|
Note: See
TracBrowser
for help on using the repository browser.