source: rtems/cpukit/libfs/src/imfs/Makefile.am @ 3e83325

4.104.114.84.95
Last change on this file since 3e83325 was 3e83325, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/22/02 at 06:35:23

2002-07-22 Ralf Corsepius <corsepiu@…>

  • src/dosfs/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES and AM_CFLAGS. Eliminate LIBNAME.
  • src/imfs/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES and AM_CFLAGS. Eliminate LIBNAME.
  • wrapup/Makefile.am: Eliminate LIBNAME.
  • Property mode set to 100644
File size: 1.5 KB
Line 
1##
2##  $Id$
3##
4
5LIB = ${ARCH}/libimfs.a
6
7IMFS_C_FILES = imfs_chown.c imfs_config.c imfs_creat.c imfs_directory.c \
8    imfs_eval.c imfs_free.c imfs_fsunmount.c imfs_gtkn.c imfs_init.c \
9    imfs_initsupp.c imfs_link.c imfs_mknod.c imfs_mount.c imfs_fchmod.c \
10    imfs_unlink.c imfs_unmount.c imfs_utime.c imfs_ntype.c imfs_stat.c \
11    imfs_getchild.c memfile.c linearfile.c deviceio.c imfs_handlers_device.c \
12    imfs_handlers_directory.c imfs_handlers_link.c imfs_handlers_memfile.c \
13    imfs_debug.c imfs_rmnod.c imfs_symlink.c imfs_readlink.c imfs_fdatasync.c \
14    imfs_fcntl.c ioman.c miniimfs_init.c imfs_load_tar.c
15
16UNIX_C_FILES = imfs_unixstub.c
17
18EMBEDDED_C_FILES = $(IMFS_C_FILES)
19
20COMMON_C_FILES =
21
22if UNIX
23C_FILES = $(COMMON_C_FILES) $(UNIX_C_FILES)
24else
25C_FILES = $(COMMON_C_FILES) $(EMBEDDED_C_FILES)
26endif
27C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
28
29include_HEADERS = imfs.h
30
31include $(top_srcdir)/../automake/multilib.am
32include $(top_srcdir)/../automake/compile.am
33include $(top_srcdir)/../automake/lib.am
34
35AM_CPPFLAGS += -I../.. $(LIBC_DEFINES)
36
37PREINSTALL_FILES = $(PROJECT_INCLUDE) \
38    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
39
40$(PROJECT_INCLUDE):
41        @$(mkinstalldirs) $@
42
43$(PROJECT_INCLUDE)/%.h: %.h
44        $(INSTALL_DATA) $< $@
45
46OBJS = $(C_O_FILES)
47
48#
49# Add local stuff here using +=
50#
51
52all-local: ${ARCH} $(LIB)
53
54$(LIB): ${OBJS}
55        $(make-library)
56
57DOC_FILES = TODO CASES
58
59EXTRA_DIST = $(DOC_FILES) $(COMMON_C_FILES) $(EMBEDDED_C_FILES) \
60    $(UNIX_C_FILES)
61
62include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.