Files
rtems/c/src/lib/libcpu/m68k/shared/misc/Makefile.am
Ralf Corsepius 39fa3ed0fe 2002-01-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* m68040/fpsp/Makefile.am: Don't include @RTEMS_BSP@.cfg.
	Eliminate *_O_FILES.
	* shared/cache/Makefile.am: Ditto.
	* shared/misc/Makefile.am: Ditto.
2003-01-15 18:12:16 +00:00

28 lines
520 B
Makefile

##
## $Id$
##
C_FILES = memcpy.c m68kidle.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
include $(top_srcdir)/../../../../../automake/compile.am
include $(top_srcdir)/../../../../../automake/lib.am
# gcc doesn't recognize difference between the cpu32 and cpu32+ so we have to
if mcpu32p
M68K_CPPFLAGS = -D__mcpu32p__
endif
if mcf5272
M68K_CPPFLAGS = -Dmcf5272
endif
AM_CPPFLAGS += $(M68K_CPPFLAGS)
all-local: $(ARCH) $(OBJS)
EXTRA_DIST = memcpy.c m68kidle.c
include $(top_srcdir)/../../../../../automake/local.am