forked from Imagelibrary/rtems
* configure.ac: Remove (Merged into ../configure.ac). * Makefile.am: Reflect having merged configure.ac into ../configure.ac. * capture/config.h: New. * capture/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * cpuuse/config.h: New. * cpuuse/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * devnull/config.h: New. * devnull/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * dummy/config.h: New. * dummy/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * dumpbuf/config.h: New. * dumpbuf/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * monitor/config.h: New. * monitor/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * mw-fb/config.h: New. * mw-fb/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * rtmonuse/config.h: New. * rtmonuse/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * serdbg/config.h: New. * serdbg/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * shell/config.h: New. * shell/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * stackchk/config.h: New. * stackchk/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * untar/config.h: New. * untar/Makefile.am: Add config.h. Reflect having merged configure.ac into ../configure.ac. * wrapup/Makefile.am: Reflect having merged configure.ac into ../configure.ac.
31 lines
449 B
Makefile
31 lines
449 B
Makefile
##
|
|
## $Id$
|
|
##
|
|
|
|
|
|
LIBNAME = libdummy
|
|
LIB = $(ARCH)/$(LIBNAME).a
|
|
|
|
C_FILES = dummy.c
|
|
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
|
|
|
|
noinst_HEADERS = config.h
|
|
|
|
include $(top_srcdir)/automake/compile.am
|
|
include $(top_srcdir)/automake/lib.am
|
|
|
|
#
|
|
# (OPTIONAL) Add local stuff here using +=
|
|
#
|
|
|
|
$(LIB): $(OBJS)
|
|
$(make-library)
|
|
|
|
all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
|
|
|
|
.PRECIOUS: $(LIB)
|
|
|
|
EXTRA_DIST = README dummy.c
|
|
|
|
include $(top_srcdir)/automake/local.am
|