source: rtems/c/src/lib/libbsp/i386/pc386/ne2000/Makefile.am @ 92b8b98a

4.104.114.84.95
Last change on this file since 92b8b98a was 92b8b98a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:14:50

2002-08-11 Ralf Corsepius <corsepiu@…>

  • 3c509/Makefile.am: Use .$(OBJEXT) instead of .o.
    • clock/Makefile.am: Use .$(OBJEXT) instead of .o.
    • console/Makefile.am: Use .$(OBJEXT) instead of .o.
    • ne2000/Makefile.am: Use .$(OBJEXT) instead of .o.
    • start/Makefile.am: Use .$(OBJEXT) instead of .o.
    • startup/Makefile.am: Use .$(OBJEXT) instead of .o.
    • timer/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wd8003/Makefile.am: Use .$(OBJEXT) instead of .o.
    • wrapup/Makefile.am: Use .$(OBJEXT) instead of .o.
  • Property mode set to 100644
File size: 680 bytes
Line 
1##
2## $Id$
3##
4
5
6PGM = $(ARCH)/ne2000.rel
7
8C_FILES = ne2000.c
9ne2000_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
10
11include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
12include $(top_srcdir)/../../../../../../automake/compile.am
13include $(top_srcdir)/../../../../../../automake/lib.am
14
15#
16# (OPTIONAL) Add local stuff here using +=
17#
18
19AM_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
20
21$(PGM): $(ne2000_rel_OBJECTS)
22        $(make-rel)
23
24# the .rel file built here will be put into libbsp.a by
25#       ../wrapup/Makefile
26
27if HAS_NETWORKING
28all-local: $(ARCH) $(ne2000_rel_OBJECTS) $(PGM)
29endif
30
31.PRECIOUS: $(PGM)
32
33EXTRA_DIST = ne2000.c
34
35include $(top_srcdir)/../../../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.