summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/powerpc/mvme5500/network/if_100MHz/Makefile.am
blob: 1e00aaad5b236dfb266fac4abd6a436fa0016939 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
##
## $Id$
##

VPATH = @srcdir@:

INCLUDES = -I @srcdir@/../GT64260

C_FILES = GT64260eth.c
include_bspdir = $(includedir)/bsp
include_bsp_HEADERS = GT64260eth.h GT64260ethreg.h

H_FILES = GT64260eth.h GT64260ethreg.h

C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))

EXTRA_DIST = GT64260eth.c

OBJS = $(C_O_FILES)

include $(top_srcdir)/../../../../../../automake/compile.am
include $(top_srcdir)/../../../../../../automake/lib.am

CFLAGS   += -msoft-float

#
# (OPTIONAL) Add local stuff here using +=
#

$(PROJECT_INCLUDE)/bsp:
	$(mkinstalldirs) $<

$(PROJECT_INCLUDE)/bsp/GT64260eth.h: GT64260eth.h
	$(INSTALL_DATA) $< $@

$(PROJECT_INCLUDE)/bsp/GT64260ethreg.h: GT64260ethreg.h
	$(INSTALL_DATA) $< $@


# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
PREINSTALL_FILES = $(PROJECT_INCLUDE)/bsp $(PROJECT_INCLUDE)/bsp/GT64260eth.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/GT64260ethreg.h

all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS)

include $(top_srcdir)/../../../../../../automake/local.am