Changeset 418c652 in rtems
- Timestamp:
- 08/11/02 05:50:52 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 45e4f321
- Parents:
- f65220f
- Location:
- c/src/libchip
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/libchip/ChangeLog
rf65220f r418c652 1 2002-08-11 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * network/Makefile.am: Use .$(OBJEXT) instead of .o. 4 * rtc/Makefile.am: Use .$(OBJEXT) instead of .o. 5 * serial/Makefile.am: Use .$(OBJEXT) instead of .o. 6 1 7 2002-08-10 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 8 -
c/src/libchip/network/Makefile.am
rf65220f r418c652 11 11 # add cs8900.c to work with it and make it compile 12 12 C_FILES = dec21140.c i82586.c sonic.c if_fxp.c 13 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%. o)13 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 14 14 15 15 include_libchip_HEADERS = cs8900.h i82586var.h if_fxpvar.h sonic.h -
c/src/libchip/rtc/Makefile.am
rf65220f r418c652 13 13 m48t08_reg8.c 14 14 15 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%. o)15 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 16 16 17 17 include_libchip_HEADERS = rtc.h icm7170.h m48t08.h -
c/src/libchip/serial/Makefile.am
rf65220f r418c652 12 12 mc68681_reg4.c mc68681_reg8.c ns16550.c z85c30.c z85c30_reg.c serprobe.c \ 13 13 termios_baud2index.c termios_baud2num.c 14 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%. o)14 C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT)) 15 15 16 16 noinst_HEADERS = mc68681_p.h ns16550_p.h z85c30_p.h
Note: See TracChangeset
for help on using the changeset viewer.