mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-01 11:56:57 +08:00
* httpd/Makefile.am, itron/Makefile.am, libblock/Makefile.am, libcsupport/Makefile.am, libfs/Makefile.am, libmisc/Makefile.am, libnetworking/Makefile.am, librpc/Makefile.am, posix/Makefile.am, rtems/Makefile.am, sapi/Makefile.am, score/Makefile.am: Eliminate CFLAGS_OPTIMIZE_V.
62 lines
1.9 KiB
Makefile
62 lines
1.9 KiB
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
include $(top_srcdir)/automake/multilib.am
|
|
include $(top_srcdir)/automake/compile.am
|
|
|
|
AM_CPPFLAGS += -I$(top_builddir)
|
|
|
|
CLEANFILES =
|
|
|
|
if !UNIX
|
|
include_rtemsdir = $(includedir)/rtems
|
|
|
|
noinst_LIBRARIES = libblock.a
|
|
libblock_a_CPPFLAGS = $(AM_CPPFLAGS)
|
|
|
|
include_rtems_HEADERS = include/rtems/bdbuf.h include/rtems/blkdev.h \
|
|
include/rtems/diskdevs.h include/rtems/ramdisk.h \
|
|
include/rtems/ide_part_table.h
|
|
|
|
libblock_a_SOURCES = src/bdbuf.c src/blkdev.c src/diskdevs.c src/ramdisk.c \
|
|
src/ide_part_table.c
|
|
|
|
all-local: $(PREINSTALL_FILES)
|
|
endif
|
|
|
|
PREINSTALL_DIRS =
|
|
PREINSTALL_FILES =
|
|
|
|
if !UNIX
|
|
$(PROJECT_INCLUDE)/rtems/$(dirstamp):
|
|
@$(mkdir_p) $(PROJECT_INCLUDE)/rtems
|
|
@: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
|
|
$(PROJECT_INCLUDE)/rtems/bdbuf.h: include/rtems/bdbuf.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/bdbuf.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/bdbuf.h
|
|
|
|
$(PROJECT_INCLUDE)/rtems/blkdev.h: include/rtems/blkdev.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/blkdev.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/blkdev.h
|
|
|
|
$(PROJECT_INCLUDE)/rtems/diskdevs.h: include/rtems/diskdevs.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/diskdevs.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/diskdevs.h
|
|
|
|
$(PROJECT_INCLUDE)/rtems/ramdisk.h: include/rtems/ramdisk.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/ramdisk.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ramdisk.h
|
|
|
|
$(PROJECT_INCLUDE)/rtems/ide_part_table.h: include/rtems/ide_part_table.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
|
|
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/ide_part_table.h
|
|
PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/ide_part_table.h
|
|
endif
|
|
|
|
CLEANFILES += $(PREINSTALL_FILES)
|
|
DISTCLEANFILES = $(PREINSTALL_DIRS)
|
|
|
|
include $(top_srcdir)/automake/local.am
|