source: rtems/c/src/lib/libbsp/hppa1.1/simhppa/wrapup/Makefile.in @ 0162910

4.104.114.84.95
Last change on this file since 0162910 was 0162910, checked in by Joel Sherrill <joel.sherrill@…>, on 12/14/98 at 23:15:38

Patch from Ralf Corsepius <corsepiu@…> to rename all
.s files to .S in conformance with GNU conventions. This is a
minor step along the way to supporting automake.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11BSP_PIECES=startup tty
12# pieces to pick up out of libcpu/hppa
13CPU_PIECES=clock milli timer
14GENERIC_PIECES=
15
16include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
17include $(RTEMS_ROOT)/make/lib.cfg
18
19ifeq ($(HAS_MP),yes)
20GENERIC_PIECES += shmdr
21BSP_PIECES += shmsupp
22endif
23
24# bummer; have to use $foreach since % pattern subst rules only replace 1x
25OBJS=$(foreach piece, $(BSP_PIECES), ../$(piece)/$(ARCH)/$(piece).rel) \
26     $(foreach piece, $(CPU_PIECES), \
27         ../../../../libcpu/$(RTEMS_CPU)/$(piece)/$(ARCH)/$(piece).rel) \
28     $(foreach piece, $(GENERIC_PIECES), \
29         ../../../$(piece)/$(ARCH)/$(piece).rel)
30LIB=$(ARCH)/libbsp.a
31
32#
33# (OPTIONAL) Add local stuff here using +=
34#
35
36DEFINES  +=
37CPPFLAGS +=
38CFLAGS   +=
39
40LD_PATHS  +=
41LD_LIBS   +=
42LDFLAGS   +=
43
44#
45# Add your list of files to delete here.  The config files
46#  already know how to delete some stuff, so you may want
47#  to just run 'make clean' first to see what gets missed.
48#  'make clobber' already includes 'make clean'
49#
50
51CLEAN_ADDITIONS +=
52CLOBBER_ADDITIONS +=
53
54$(LIB): ${OBJS}
55        $(make-library)
56
57all:    ${ARCH} $(SRCS) $(LIB)
58        $(INSTALL_VARIANT) -m 644 $(LIB) ${PROJECT_RELEASE}/lib
59
Note: See TracBrowser for help on using the repository browser.