source: rtems/c/src/lib/libmisc/cpuuse/Makefile.in @ 31bce9b

4.104.114.84.95
Last change on this file since 31bce9b was 31bce9b, checked in by Joel Sherrill <joel.sherrill@…>, on 12/03/98 at 21:55:33

Moved stackchk.h to rtems subdirectory.

  • Property mode set to 100644
File size: 1.0 KB
Line 
1#       
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7VPATH = @srcdir@
8RTEMS_ROOT = @top_srcdir@
9PROJECT_ROOT = @PROJECT_ROOT@
10
11LIB=${ARCH}/libcpuuse-tmp.a
12
13# C source names, if any, go here -- minus the .c
14C_PIECES=cpuuse
15C_FILES=$(C_PIECES:%=%.c)
16C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
17
18H_FILES=
19INSTALLED_H_FILES=$(srcdir)/cpuuse.h
20
21SRCS=$(C_FILES) $(H_FILES) $(INSTALLED_H_FILES)
22OBJS=$(C_O_FILES)
23
24include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
25include $(RTEMS_ROOT)/make/lib.cfg
26
27#
28# (OPTIONAL) Add local stuff here using +=
29#
30
31DEFINES  +=
32CPPFLAGS += -I.
33CFLAGS   +=
34
35LD_PATHS  +=
36LD_LIBS   +=
37LDFLAGS   +=
38
39#
40# Add your list of files to delete here.  The config files
41#  already know how to delete some stuff, so you may want
42#  to just run 'make clean' first to see what gets missed.
43#  'make clobber' already includes 'make clean'
44#
45
46CLEAN_ADDITIONS +=
47CLOBBER_ADDITIONS +=
48
49${LIB}: ${SRCS} preinstall ${OBJS}
50        $(make-library)
51
52all: ${ARCH} $(SRCS) preinstall $(LIB)
53
54preinstall:
55        $(INSTALL) -m 444 ${INSTALLED_H_FILES} $(PROJECT_INCLUDE)/rtems
Note: See TracBrowser for help on using the repository browser.