source: rtems/c/src/lib/libmisc/assoc/Makefile.in @ c3a0358

4.104.114.84.95
Last change on this file since c3a0358 was a2016b99, checked in by Joel Sherrill <joel.sherrill@…>, on 10/08/97 at 14:42:08

Removed include directory at "build" point and the link of this directory
to lib/include.

Went to using a PROJECT_INCLUDE variable.

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