Line 104... |
Line 104... |
host = @host@
|
host = @host@
|
host_cpu = @host_cpu@
|
host_cpu = @host_cpu@
|
host_os = @host_os@
|
host_os = @host_os@
|
|
|
noinst_LIBRARIES = libperipheral.a
|
noinst_LIBRARIES = libperipheral.a
|
libperipheral_a_SOURCES = 16450.c dma.c mc.c ethernet.c crc32.c
|
libperipheral_a_SOURCES = 16450.c dma.c mc.c ethernet.c crc32.c gpio.c
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
|
CONFIG_HEADER = ../config.h
|
CONFIG_HEADER = ../config.h
|
CONFIG_CLEAN_FILES =
|
CONFIG_CLEAN_FILES =
|
LIBRARIES = $(noinst_LIBRARIES)
|
LIBRARIES = $(noinst_LIBRARIES)
|
|
|
Line 116... |
Line 116... |
DEFS = @DEFS@ -I. -I$(srcdir) -I..
|
DEFS = @DEFS@ -I. -I$(srcdir) -I..
|
CPPFLAGS = @CPPFLAGS@
|
CPPFLAGS = @CPPFLAGS@
|
LDFLAGS = @LDFLAGS@
|
LDFLAGS = @LDFLAGS@
|
LIBS = @LIBS@
|
LIBS = @LIBS@
|
libperipheral_a_LIBADD =
|
libperipheral_a_LIBADD =
|
libperipheral_a_OBJECTS = 16450.o dma.o mc.o ethernet.o crc32.o
|
libperipheral_a_OBJECTS = 16450.o dma.o mc.o ethernet.o crc32.o gpio.o
|
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
|
CCLD = $(CC)
|
CCLD = $(CC)
|
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@
|
DIST_COMMON = Makefile.am Makefile.in
|
DIST_COMMON = Makefile.am Makefile.in
|
|
|
Line 128... |
Line 128... |
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
DISTFILES = $(DIST_COMMON) $(SOURCES) $(HEADERS) $(TEXINFOS) $(EXTRA_DIST)
|
|
|
TAR = gtar
|
TAR = gtar
|
GZIP_ENV = --best
|
GZIP_ENV = --best
|
DEP_FILES = .deps/16450.P .deps/crc32.P .deps/dma.P .deps/ethernet.P \
|
DEP_FILES = .deps/16450.P .deps/crc32.P .deps/dma.P .deps/ethernet.P \
|
.deps/mc.P
|
.deps/gpio.P .deps/mc.P
|
SOURCES = $(libperipheral_a_SOURCES)
|
SOURCES = $(libperipheral_a_SOURCES)
|
OBJECTS = $(libperipheral_a_OBJECTS)
|
OBJECTS = $(libperipheral_a_OBJECTS)
|
|
|
all: all-redirect
|
all: all-redirect
|
.SUFFIXES:
|
.SUFFIXES:
|
Line 215... |
Line 215... |
cd $(top_srcdir) \
|
cd $(top_srcdir) \
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu peripheral/Makefile
|
&& $(AUTOMAKE) --include-deps --build-dir=$$here --srcdir-name=$(top_srcdir) --output-dir=$$top_distdir --gnu peripheral/Makefile
|
@for file in $(DISTFILES); do \
|
@for file in $(DISTFILES); do \
|
d=$(srcdir); \
|
d=$(srcdir); \
|
if test -d $$d/$$file; then \
|
if test -d $$d/$$file; then \
|
cp -pr $$d/$$file $(distdir)/$$file; \
|
cp -pr $$/$$file $(distdir)/$$file; \
|
else \
|
else \
|
test -f $(distdir)/$$file \
|
test -f $(distdir)/$$file \
|
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
|| ln $$d/$$file $(distdir)/$$file 2> /dev/null \
|
|| cp -p $$d/$$file $(distdir)/$$file || :; \
|
|| cp -p $$d/$$file $(distdir)/$$file || :; \
|
fi; \
|
fi; \
|