Changeset c7ff624c in rtems
- Timestamp:
- 07/25/03 06:35:06 (20 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- e37d7196
- Parents:
- 754ca59b
- Location:
- c/src/libchip
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/ChangeLog
r754ca59b rc7ff624c 1 2003-07-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * ide/Makefile.am, network/Makefile.am, rtc/Makefile.am, 4 serial/Makefile.am: Add conditional LIBCHIP. 5 Conditionally build include-dirs. 6 1 7 2003-07-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/libchip/ide/Makefile.am
r754ca59b rc7ff624c 2 2 ## $Id$ 3 3 ## 4 5 6 include_idedir = $(includedir)/libchip7 4 8 5 LIBNAME = libide … … 13 10 14 11 noinst_HEADERS = ata_internal.h 15 16 include_ide_HEADERS = ata.h ide_ctrl_cfg.h ide_ctrl.h ide_ctrl_io.h17 12 18 13 OBJS = $(C_O_FILES) … … 30 25 $(INSTALL_DATA) $< $@ 31 26 27 if LIBCHIP 28 include_idedir = $(includedir)/libchip 29 include_ide_HEADERS = ata.h ide_ctrl_cfg.h ide_ctrl.h ide_ctrl_io.h 30 32 31 $(LIB): $(OBJS) 33 32 $(make-library) 34 33 35 34 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 35 endif 36 36 37 37 EXTRA_DIST = $(C_FILES) -
c/src/libchip/network/Makefile.am
r754ca59b rc7ff624c 3 3 ## 4 4 5 6 include_libchipdir = $(includedir)/libchip7 5 8 6 LIBNAME = libnetchip … … 11 9 C_FILES = cs8900.c dec21140.c i82586.c sonic.c if_fxp.c elnk.c 12 10 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 13 14 include_libchip_HEADERS = cs8900.h i82586var.h if_fxpvar.h sonic.h if_media.h mii.h15 11 16 12 include $(top_srcdir)/../../automake/compile.am … … 27 23 28 24 AM_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ 25 26 if LIBCHIP 27 include_libchipdir = $(includedir)/libchip 28 include_libchip_HEADERS = cs8900.h i82586var.h if_fxpvar.h sonic.h if_media.h mii.h 29 29 30 30 $(LIB): $(OBJS) … … 44 44 all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB) $(TMPINSTALL_FILES) 45 45 endif 46 endif 46 47 47 48 .PRECIOUS: $(LIB) -
c/src/libchip/rtc/Makefile.am
r754ca59b rc7ff624c 3 3 ## 4 4 5 6 include_libchipdir = $(includedir)/libchip7 5 8 6 LIBNAME = librtcio … … 15 13 OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 14 17 include_libchip_HEADERS = rtc.h icm7170.h m48t08.h18 15 19 16 include $(top_srcdir)/../../automake/compile.am 20 17 include $(top_srcdir)/../../automake/lib.am 18 21 19 22 20 PREINSTALL_FILES = $(PROJECT_INCLUDE)/libchip \ … … 31 29 # Add local stuff here using += 32 30 # 31 if LIBCHIP 32 include_libchipdir = $(includedir)/libchip 33 include_libchip_HEADERS = rtc.h icm7170.h m48t08.h 33 34 34 35 $(LIB): $(OBJS) … … 36 37 37 38 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 39 endif 38 40 39 41 DOC_FILES = README.ds1643 README.icm7170 README.m48t08 README.m48t18 STATUS -
c/src/libchip/serial/Makefile.am
r754ca59b rc7ff624c 3 3 # 4 4 5 6 include_libchipdir = $(includedir)/libchip7 5 8 6 LIBNAME = libserialio … … 15 13 16 14 noinst_HEADERS = mc68681_p.h ns16550_p.h z85c30_p.h 17 include_libchip_HEADERS = mc68681.h ns16550.h z85c30.h serial.h sersupp.h18 15 19 16 include $(top_srcdir)/../../automake/compile.am … … 31 28 # Add local stuff here using += 32 29 # 30 if LIBCHIP 31 include_libchipdir = $(includedir)/libchip 32 include_libchip_HEADERS = mc68681.h ns16550.h z85c30.h serial.h sersupp.h 33 33 34 34 $(LIB): $(OBJS) … … 36 36 37 37 all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB) 38 endif 38 39 39 40 DOC_FILES = README.mc68681 README.ns16550 README.xr88681 README.z85c30 \
Note: See TracChangeset
for help on using the changeset viewer.