source: rtems/c/src/lib/libcpu/hppa1.1/semaphore/Makefile.in @ a2016b99

4.104.114.84.95
Last change on this file since a2016b99 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: 927 bytes
Line 
1#
2#  $Id$
3#
4
5@SET_MAKE@
6srcdir = @srcdir@
7top_srcdir = @top_srcdir@
8VPATH=@srcdir@
9
10PGM=${ARCH}/semaphore.rel
11
12# C source names, if any, go here -- minus the .c
13C_PIECES=semaphore
14C_FILES=$(C_PIECES:%=%.c)
15C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
16
17H_PIECES=semaphore
18H_FILES=$(H_PIECES:%=$(srcdir)/%.h)
19
20# Assembly source names, if any, go here -- minus the .s
21S_PIECES=
22S_FILES=$(S_PIECES:%=%.s)
23S_O_FILES=$(S_FILES:%.s=${ARCH}/%.o)
24
25SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
26OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
27
28include $(RTEMS_CUSTOM)
29include $(PROJECT_ROOT)/make/leaf.cfg
30
31#
32# (OPTIONAL) Add local stuff here using +=
33#
34
35DEFINES  +=
36CPPFLAGS +=
37CFLAGS   += $(CFLAGS_OS_V)
38
39LD_PATHS  +=
40LD_LIBS   +=
41LDFLAGS   +=
42
43# Add your list of files to delete here.
44
45CLEAN_ADDITIONS +=
46CLOBBER_ADDITIONS +=
47
48${PGM}: ${SRCS} ${OBJS}
49        $(make-rel)
50
51all:    ${ARCH} $(SRCS) $(PGM)
52        $(INSTALL) -m 444 $(H_FILES) $(PROJECT_INCLUDE)
Note: See TracBrowser for help on using the repository browser.