source: rtems/c/src/lib/libbsp/m68k/gen68340/clock/Makefile.in @ 0dd1d44

4.104.114.84.95
Last change on this file since 0dd1d44 was 7068e246, checked in by Joel Sherrill <joel.sherrill@…>, on 01/10/00 at 14:29:44

Patch rtems-rc-20000104-10.diff from Ralf Corsepius <corsepiu@…>
that converts the m68k directory to automake.

NOTE: This one is fully tested by building *all* bsps with

../../rtems-rc-20000104/configure \

--target=m68k-rtems \
--prefix=/tmp/rtems \
--enable-cxx \
--disable-posix \
--enable-rdbg \
--disable-networking \
--enable-maintainer-mode \
--enable-multiprocessing \
--disable-tests

make

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[132f194]1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
[d8ff793]7top_srcdir = @top_srcdir@
[7068e246]8top_builddir = ..
9subdir = clock
[132f194]10
[6693a68]11RTEMS_ROOT = @RTEMS_ROOT@
[d8ff793]12PROJECT_ROOT = @PROJECT_ROOT@
13
14VPATH = @srcdir@
15
[6693a68]16PGM = ${ARCH}/clock.rel
[132f194]17
18# C source names, if any, go here -- minus the .c
[6693a68]19C_PIECES = ckinit
20C_FILES = $(C_PIECES:%=%.c)
21C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
[132f194]22
[6693a68]23H_FILES =
[132f194]24
[6693a68]25SRCS = $(C_FILES) $(H_FILES)
26OBJS = $(C_O_FILES)
[132f194]27
[6693a68]28include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[132f194]29include $(RTEMS_ROOT)/make/leaf.cfg
30
[6693a68]31INSTALL_CHANGE = @INSTALL_CHANGE@
32
[132f194]33#
34# (OPTIONAL) Add local stuff here using +=
35#
36
[6693a68]37DEFINES +=
[132f194]38CPPFLAGS +=
[6693a68]39CFLAGS +=
[132f194]40
[6693a68]41LD_PATHS +=
42LD_LIBS +=
43LDFLAGS +=
[132f194]44
45#
46# Add your list of files to delete here.  The config files
47#  already know how to delete some stuff, so you may want
48#  to just run 'make clean' first to see what gets missed.
49#  'make clobber' already includes 'make clean'
50#
51
52CLEAN_ADDITIONS +=
53CLOBBER_ADDITIONS +=
54
[7e642ba]55$(PGM): ${OBJS}
[132f194]56        $(make-rel)
57
[6693a68]58all: ${ARCH} $(SRCS) $(PGM)
[132f194]59
60# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
[6693a68]61install: all
[d8ff793]62
[08b5f55]63Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
[d8ff793]64        cd $(top_builddir) \
65         && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status
Note: See TracBrowser for help on using the repository browser.