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