source: rtems/c/src/tests/psxtests/psxmount/Makefile.in @ 0895bdb

4.104.114.84.95
Last change on this file since 0895bdb was 0895bdb, checked in by Joel Sherrill <joel.sherrill@…>, on 11/23/98 at 18:57:48

Added tests in support of the file system infrastructure.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11TEST=mount
12
13MANAGERS=all
14
15# C source names, if any, go here -- minus the .c
16C_PIECES=main test
17C_FILES=$(C_PIECES:%=%.c)
18C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
19
20H_FILES=
21
22#DOCTYPES=scn
23DOCS=$(DOCTYPES:%=$(TEST).%)
24
25SRCS=$(DOCS) $(C_FILES) $(H_FILES)
26OBJS=$(C_O_FILES)
27
28PRINT_SRCS=$(DOCS)
29
30PGM=${ARCH}/$(TEST).exe
31
32include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
33include $(RTEMS_ROOT)/make/leaf.cfg
34
35#
36# (OPTIONAL) Add local stuff here using +=
37#
38
39DEFINES  +=
40CPPFLAGS +=
41CFLAGS   +=
42
43LD_PATHS  +=
44LD_LIBS   +=
45LDFLAGS   +=
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
54CLEAN_ADDITIONS +=
55CLOBBER_ADDITIONS +=
56
57all:    ${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.