Files
rtems/c/src/lib/libcpu/mips/clock/Makefile.am
Ralf Corsepius 9a874631f6 2004-01-18 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* clock/Makefile.am: Convert to using automake compilation rules.
	* mongoosev/Makefile.am: Ditto.
	* r46xx/Makefile.am: Ditto.
	* shared/Makefile.am: Ditto.
	* timer/Makefile.am: Ditto.
	* tx39/Makefile.am: Ditto.
	* Makefile.am: Remove conditional subdirs.
	* configure.ac: Add subdir-object to AUTOMAKE_OPTIONS.
	Require automake-1.8.2. Add AM_PROG_CC_C_O.
2004-01-18 09:18:06 +00:00

29 lines
656 B
Makefile

##
## $Id$
##
EXTRA_PROGRAMS =
CLEANFILES =
noinst_DATA =
include $(top_srcdir)/../../../automake/compile.am
include $(top_srcdir)/../../../automake/lib.am
if r46xx
EXTRA_PROGRAMS += clock.rel
CLEANFILES += clock.rel
clock_rel_SOURCES = ckinit.c clock.S clock.h
clock_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
clock_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
EXTRA_PROGRAMS += clock_g.rel
CLEANFILES += clock_g.rel
clock_g_rel_SOURCES = $(clock_rel_SOURCES)
clock_g_rel_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
clock_g_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
noinst_DATA += clock$(LIB_VARIANT).rel
endif
include $(top_srcdir)/../../../automake/local.am