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

4.104.114.84.95
Last change on this file since c46ce854 was fc7bc51, checked in by Joel Sherrill <joel.sherrill@…>, on 04/09/97 at 20:18:54

new files.

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