source: rtems/cpukit/libmisc/fsmount/Makefile.am @ 77c4089

Last change on this file since 77c4089 was a97ee41, checked in by cvs2git <rtems-devel@…>, on 08/06/03 at 19:20:53

This commit was manufactured by cvs2svn to create branch 'rtems-4-6-branch'.

Cherrypick from master 2003-08-06 19:20:52 UTC Jennifer Averett <Jennifer.Averett@…> '2003-08-06 Thomas Doerfler<Thomas.Doerfler@…>':

c/src/tests/samples/fileio/Makefile.am
c/src/tests/samples/fileio/fileio.doc
c/src/tests/samples/fileio/init.c
c/src/tests/samples/fileio/system.h
cpukit/libmisc/fsmount/Makefile.am
cpukit/libmisc/fsmount/README
cpukit/libmisc/fsmount/fsmount.c
cpukit/libmisc/fsmount/fsmount.h

Cherrypick from master 2003-06-18 15:15:48 UTC Ralf Corsepius <ralf.corsepius@…> '2003-06-18 Ralf Corsepius <corsepiu@…>':

bootstrap
config.sub

  • Property mode set to 100644
File size: 800 bytes
Line 
1##
2## Makefile.am,v 1.9 2002/08/11 05:51:17 ralf Exp
3##
4
5
6include_rtemsdir = $(includedir)/rtems
7
8LIBNAME = libfsmount
9LIB = $(ARCH)/$(LIBNAME).a
10
11C_FILES = fsmount.c
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
13
14include_rtems_HEADERS = fsmount.h
15
16OBJS = $(C_O_FILES)
17
18include $(top_srcdir)/../automake/compile.am
19include $(top_srcdir)/../automake/lib.am
20
21$(PROJECT_INCLUDE)/rtems:
22        @$(mkinstalldirs) $@
23$(PROJECT_INCLUDE)/rtems/%.h: %.h
24        $(INSTALL_DATA) $< $@
25
26#
27# (OPTIONAL) Add local stuff here using +=
28#
29
30$(LIB): $(OBJS)
31        $(make-library)
32
33PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
34    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
35
36all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
37
38.PRECIOUS: $(LIB)
39
40EXTRA_DIST = README fsmount.c
41
42include $(top_srcdir)/../automake/local.am
43
Note: See TracBrowser for help on using the repository browser.