Changeset 4e568769 in rtems
- Timestamp:
- 01/29/01 18:35:10 (23 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a76e2b4
- Parents:
- 623893c
- Location:
- c/src/lib/libbsp/sh/shsim
- Files:
-
- 1 added
- 2 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libbsp/sh/shsim/ChangeLog
r623893c r4e568769 1 2001-01-29 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 * Makefile.am: Add scitab, gdbsci to SUBDIRS. 4 * include/gdbsci.h: New file. 5 * include/.cvsignore: Add stamp-h? and bspopts.h*. 6 * console/Makefile.am: Use shared/console.c. 7 * console/console-io.c, console/console-support.S: Remove. 8 1 9 2001-01-25 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 10 -
c/src/lib/libbsp/sh/shsim/Makefile.am
r623893c r4e568769 8 8 # wrapup is the one that actually builds and installs the library 9 9 # from the individual .rel files built in other directories 10 SUBDIRS = include start startup clock console wrapup10 SUBDIRS = include start startup clock scitab gdbsci console wrapup 11 11 12 12 include $(top_srcdir)/../../bsp.am -
c/src/lib/libbsp/sh/shsim/console/Makefile.am
r623893c r4e568769 5 5 AUTOMAKE_OPTIONS = foreign 1.4 6 6 7 VPATH = @srcdir@:@srcdir@/../../ ../shared7 VPATH = @srcdir@:@srcdir@/../../shared 8 8 9 9 PGM = $(ARCH)/console.rel 10 10 11 C_FILES = console -io.c console-polled.c12 C_O_FILES = $(C_FILES: %.c=$(ARCH)/%.o)11 C_FILES = console.c 12 C_O_FILES = $(C_FILES:shared/%.c=$(ARCH)/%.o) 13 13 14 S_FILES = console-support.S 15 S_O_FILES = $(S_FILES:%.S=$(ARCH)/%.o) 16 17 OBJS = $(C_O_FILES) $(S_O_FILES) 14 OBJS = $(C_O_FILES) 18 15 19 16 include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg … … 28 25 $(make-rel) 29 26 30 # the .rel file built here will be put into libbsp.a by ../wrapup/Makefile 27 # the .rel file built here will be put into libbsp.a by 28 # ../wrapup/Makefile 31 29 32 30 all-local: $(ARCH) $(OBJS) $(PGM) … … 34 32 .PRECIOUS: $(PGM) 35 33 36 EXTRA_DIST = console.c37 38 34 include $(top_srcdir)/../../../../../../automake/local.am -
c/src/lib/libbsp/sh/shsim/include/.cvsignore
r623893c r4e568769 1 1 Makefile 2 2 Makefile.in 3 stamp-h* 4 bspopts.h*
Note: See TracChangeset
for help on using the changeset viewer.