source: rtems/c/src/tests/psxtests/psxtimer/Makefile.in @ f93d996

4.104.114.84.95
Last change on this file since f93d996 was f93d996, checked in by Joel Sherrill <joel.sherrill@…>, on 02/10/99 at 17:06:27

Changed file name.

  • Property mode set to 100644
File size: 1.1 KB
RevLine 
[657be8f5]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
[f93d996]11TEST=psxtimer
[657be8f5]12
13MANAGERS=all
14
15# C source names, if any, go here -- minus the .c
[f93d996]16C_PIECES=psxtimer
[657be8f5]17C_FILES=$(C_PIECES:%=%.c)
18C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
19
20H_FILES=
21
22DOCTYPES=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.