source: rtems/c/src/lib/libbsp/i386/ts_386ex/network/Makefile.am @ 5be168b

4.104.114.84.95
Last change on this file since 5be168b was 5be168b, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/03 at 17:13:09

2003-12-02 Ralf Corsepius <corsepiu@…>

  • Makefile.am: Add preinstallation dirstamp support.
  • clock/Makefile.am: Cosmetics.
  • console/Makefile.am: Cosmetics.
  • network/Makefile.am: Cosmetics.
  • startup/Makefile.am: Cosmetics.
  • timer/Makefile.am: Cosmetics.
  • wrapup/Makefile.am: Cosmetics.
  • Property mode set to 100644
File size: 631 bytes
Line 
1##
2## $Id$
3##
4
5PGM = $(ARCH)/network.rel
6
7C_FILES = ne2000.c
8C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
9
10OBJS = $(C_O_FILES)
11
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_COMPILING_BSD_KERNEL_ -DKERNEL -DINET -DNFS -DDIAGNOSTIC \
20    -DBOOTP_COMPAT
21
22$(PGM): $(OBJS)
23        $(make-rel)
24
25# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
26
27if HAS_NETWORKING
28all-local: $(OBJS) $(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.