Patch rtems-rc-19991117-9.diff from Ralf Corsepius <corsepiu@faw.uni-ulm.de>

to convert the libc directory to automake and "dozens of
small fixes for Makefile.ins/configure.ins below c/src/lib."
This commit is contained in:
Joel Sherrill
1999-11-22 19:27:13 +00:00
parent de759c54f5
commit 7e642bab20
236 changed files with 709 additions and 535 deletions

View File

@@ -0,0 +1,127 @@
##
## $Id$
##
AUTOMAKE_OPTIONS = foreign 1.4
LIBNAME = libcsupport
LIB = ${ARCH}/${LIBNAME}.a
ERROR_C_FILES = error.c
ASSOCIATION_C_FILES = assoc.c assocnamebad.c
BASE_FS_C_FILES = base_fs.c mount.c unmount.c ioman.c libio.c \
libio_sockets.c eval.c fs_null_handlers.c
IMFS_C_FILES = imfs_chown.c imfs_creat.c imfs_directory.c imfs_eval.c \
imfs_free.c imfs_fsunmount.c imfs_gtkn.c imfs_init.c imfs_initsupp.c \
imfs_link.c imfs_mknod.c imfs_mount.c imfs_fchmod.c imfs_unlink.c \
imfs_unmount.c imfs_utime.c imfs_ntype.c imfs_stat.c imfs_getchild.c \
memfile.c deviceio.c imfs_handlers_device.c imfs_handlers_directory.c \
imfs_handlers_link.c imfs_handlers_memfile.c imfs_debug.c imfs_rmnod.c \
imfs_symlink.c imfs_readlink.c imfs_fdatasync.c imfs_fcntl.c \
miniimfs_init.c
TERMIOS_C_FILES = cfgetispeed.c cfgetospeed.c cfsetispeed.c cfsetospeed.c \
tcgetattr.c tcsetattr.c tcdrain.c tcflow.c tcflush.c tcgetprgrp.c \
tcsendbreak.c tcsetpgrp.c termios.c termiosinitialize.c \
termiosreserveresources.c
SYSTEM_CALL_C_FILES = open.c close.c read.c write.c lseek.c ioctl.c mkdir.c \
mknod.c mkfifo.c rmdir.c chdir.c chmod.c fchmod.c chown.c link.c \
unlink.c umask.c ftruncate.c utime.c fstat.c fcntl.c fpathconf.c \
getdents.c fsync.c fdatasync.c pipe.c dup.c dup2.c symlink.c readlink.c \
creat.c
DIRECTORY_SCAN_C_FILES = opendir.c closedir.c readdir.c rewinddir.c \
scandir.c seekdir.c telldir.c getcwd.c
MALLOC_C_FILES = malloc.c __brk.c __sbrk.c
PASSWORD_GROUP_C_FILES = getpwent.c getgrent.c
TERMINAL_IDENTIFICATION_C_FILES = ctermid.c isatty.c ttyname.c ttyname_r.c
LIBC_GLUE_C_FILES = __getpid.c __gettod.c __times.c truncate.c access.c \
stat.c lstat.c pathconf.c newlibc.c no_posix.c no_libc.c
UNIX_LIBC_C_FILES = unixlibc.c hosterr.c
# C and C++ source names, if any, go here -- minus the .c or .cc
COMMON_C_FILES = $(BASE_FS_C_FILES) $(MALLOC_C_FILES) \
$(TERMIOS_C_FILES) $(ERROR_C_FILES) $(ASSOCIATION_C_FILES)
UNIX_C_FILES = $(UNIX_LIBC_C_FILES) imfs_unixstub.c
EMBEDDED_C_FILES = $(LIBC_GLUE_C_FILES) \
$(PASSWORD_GROUP_C_FILES) $(TERMINAL_IDENTIFICATION_C_FILES) \
$(SYSTEM_CALL_C_FILES) $(DIRECTORY_SCAN_C_FILES) \
$(IMFS_C_FILES)
if UNIX
C_FILES = $(COMMON_C_FILES) $(UNIX_C_FILES)
else
C_FILES = $(COMMON_C_FILES) $(EMBEDDED_C_FILES)
endif
C_O_FILES = $(C_FILES:%.c=${ARCH}/%.o)
H_FILES = libcsupport.h imfs.h
SYS_H_FILES =
RTEMS_H_FILES = assoc.h error.h libio.h
noinst_HEADERS = libio_.h
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
include $(top_srcdir)/../../../automake/lib.am
PREINSTALL_FILES = \
$(PROJECT_INCLUDE) \
$(PROJECT_INCLUDE)/rtems \
$(PROJECT_INCLUDE)/sys \
$(H_FILES:%=$(PROJECT_INCLUDE)/%) \
$(RTEMS_H_FILES:%=$(PROJECT_INCLUDE)/rtems/%) \
$(SYS_H_FILES:%=$(PROJECT_INCLUDE)/sys/%)
$(PROJECT_INCLUDE):
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/rtems:
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/sys:
@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/%.h: %.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/rtems/%.h: %.h
$(INSTALL_DATA) $< $@
$(PROJECT_INCLUDE)/sys/%.h: %.h
$(INSTALL_DATA) $< $@
TMPINSTALL_FILES += \
$(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a
SRCS = $(C_FILES) $(H_FILES) $(SYS_H_FILES) $(RTEMS_H_FILES)
OBJS = $(C_O_FILES)
#
# Add local stuff here using +=
#
AM_CFLAGS += $(LIBC_DEFINES)
all: ${ARCH} $(TMPINSTALL_FILES)
$(LIB): ${OBJS}
$(make-library)
$(PROJECT_RELEASE)/lib/$(LIBNAME)$(LIB_VARIANT).a: $(LIB)
$(INSTALL_DATA) $< $@
DOC_FILES = TODO CASES
## This only works with automake > 1.14
EXTRA_DIST = \
$(DOC_FILES) \
$(COMMON_C_FILES) $(EMBEDDED_C_FILES) $(UNIX_C_FILES) \
$(H_FILES) $(RTEMS_H_FILES) $(SYS_H_FILES)
include $(top_srcdir)/../../../automake/local.am

View File

@@ -8,7 +8,7 @@ RTEMS_TOP(../../..)
AC_CONFIG_AUX_DIR(../../..) AC_CONFIG_AUX_DIR(../../..)
RTEMS_CANONICAL_TARGET_CPU RTEMS_CANONICAL_TARGET_CPU
AM_INIT_AUTOMAKE(rtems-c-src-lib,RTEMS_VERSION,no) AM_INIT_AUTOMAKE(rtems-c-src-lib,$RTEMS_VERSION,no)
AM_MAINTAINER_MODE AM_MAINTAINER_MODE
RTEMS_ENABLE_MULTIPROCESSING RTEMS_ENABLE_MULTIPROCESSING

View File

@@ -14,13 +14,13 @@ else
NEWLIB_H_FILES += termios.h NEWLIB_H_FILES += termios.h
endif endif
H_FILES += utime.h $(NEWLIB_H_FILES) $(NETWORKING_H_FILES) H_FILES = utime.h $(NEWLIB_H_FILES) $(NETWORKING_H_FILES)
noinst_HEADERS = $(H_FILES) noinst_HEADERS = utime.h termios.h ioctl.h
PREINSTALL_FILES = \ PREINSTALL_FILES = \
$(PROJECT_INCLUDE)/sys \ $(PROJECT_INCLUDE)/sys \
$(noinst_HEADERS:%=$(PROJECT_INCLUDE)/sys/%) $(H_FILES:%=$(PROJECT_INCLUDE)/sys/%)
$(PROJECT_INCLUDE)/sys: $(PROJECT_INCLUDE)/sys:
@$(mkinstalldirs) $@ @$(mkinstalldirs) $@

View File

@@ -7,6 +7,11 @@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = . top_builddir = .
ACLOCAL = aclocal
AUTOCONF = autoconf
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
ACLOCAL_AMFLAGS = -I @RTEMS_TOPdir@/aclocal
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
@@ -49,6 +54,18 @@ preinstall:
$(PROJECT_ROOT)/@RTEMS_BSP@/lib; \ $(PROJECT_ROOT)/@RTEMS_BSP@/lib; \
fi fi
# HACK: Don't let them fail here
dist:
distdir:
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
cd $(top_builddir) \ cd $(top_builddir) \
&& CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status && CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ configure.in
cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
config.status: $(srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(srcdir)/configure: @MAINTAINER_MODE_TRUE@$(srcdir)/configure.in $(ACLOCAL_M4)
cd $(srcdir) && $(AUTOCONF)

View File

@@ -63,7 +63,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -64,7 +64,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -53,7 +53,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -56,7 +56,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -69,7 +69,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)
$(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib $(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -67,7 +67,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)
$(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib $(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -12,16 +12,17 @@ bin2boot
bin2boot_SOURCES = bin2boot.c bin2boot_SOURCES = bin2boot.c
PREINSTALL_DIRS=$(PROJECT_ROOT)/pc386/build-tools PREINSTALL_FILES = \
PREINSTALL_FILES = $(PROJECT_ROOT)/pc386/build-tools/bin2boot$(EXEEXT) $(PROJECT_ROOT)/pc386/build-tools \
$(PROJECT_ROOT)/pc386/build-tools/bin2boot$(EXEEXT)
$(PREINSTALL_DIRS): $(PROJECT_ROOT)/pc386/build-tools:
$(mkinstalldirs) $@ $(mkinstalldirs) $@
$(PROJECT_ROOT)/pc386/build-tools/bin2boot$(EXEEXT): bin2boot $(PROJECT_ROOT)/pc386/build-tools/bin2boot$(EXEEXT): bin2boot
$(INSTALL_PROGRAM) $< $@ $(INSTALL_PROGRAM) $< $@
## HACK: install into build-tree ## HACK: install into build-tree
all-local: $(PREINSTALL_DIRS) $(PREINSTALL_FILES) all-local: $(PREINSTALL_FILES)
include $(top_srcdir)/../../../../../../../automake/local.am include $(top_srcdir)/../../../../../../../automake/local.am

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -56,7 +56,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -53,7 +53,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -69,7 +69,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)
@$(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib @$(INSTALL_CHANGE) -m 644 $(srcdir)/linkcmds $(PROJECT_RELEASE)/lib

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -6,7 +6,7 @@
srcdir = @srcdir@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
subdir = i960/cvme961/clock subdir = i960/rxgen960/clock
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -6,7 +6,7 @@
srcdir = @srcdir@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
subdir = i960/rxgen/console subdir = i960/rxgen960/console
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -18,8 +18,8 @@ PGM = ${ARCH}/startup.rel
# C source names, if any, go here -- minus the .c # C source names, if any, go here -- minus the .c
#C_PIECES = bspclean bsplibc bsppost bspstart bootcard main sbrk setvec \ #C_PIECES = bspclean bsplibc bsppost bspstart bootcard main sbrk setvec \
# gnatinstallhandler # gnatinstallhandler
C_PIECES = bspstart cntrltbl exit fault flttbl frmstr intrtbl kkprintf \ C_PIECES = bspstart cntrltbl exit fault flttbl frmstr intrtbl kkprintf nmi \
nmi nulsystbl prcb rom_cntrltbl rom_ibr rom_prcb sctns setvec systbl nulsystbl prcb rom_cntrltbl rom_ibr rom_prcb sctns setvec systbl
C_FILES = $(C_PIECES:%=%.c) C_FILES = $(C_PIECES:%=%.c)
C_O_FILES = $(C_PIECES:%=${ARCH}/%.o) C_O_FILES = $(C_PIECES:%=${ARCH}/%.o)
@@ -65,7 +65,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
# XXX JRS look at the list of objects installed # XXX JRS look at the list of objects installed

View File

@@ -6,7 +6,7 @@
srcdir = @srcdir@ srcdir = @srcdir@
top_srcdir = @top_srcdir@ top_srcdir = @top_srcdir@
top_builddir = ../../.. top_builddir = ../../..
subdir = i960/rxgen/timer subdir = i960/rxgen960/timer
RTEMS_ROOT = @RTEMS_ROOT@ RTEMS_ROOT = @RTEMS_ROOT@
PROJECT_ROOT = @PROJECT_ROOT@ PROJECT_ROOT = @PROJECT_ROOT@
@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -64,7 +64,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -60,7 +60,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -60,7 +60,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -58,7 +58,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -59,7 +59,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -61,7 +61,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -52,7 +52,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

View File

@@ -60,7 +60,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
$(srcdir)/rom: $(srcdir)/rom:

View File

@@ -57,7 +57,7 @@ LDFLAGS +=
CLEAN_ADDITIONS += CLEAN_ADDITIONS +=
CLOBBER_ADDITIONS += CLOBBER_ADDITIONS +=
${PGM}: ${SRCS} ${OBJS} $(PGM): ${OBJS}
$(make-rel) $(make-rel)
all: ${ARCH} $(SRCS) $(PGM) all: ${ARCH} $(SRCS) $(PGM)

Some files were not shown because too many files have changed in this diff Show More