source: rtems/c/src/libnetworking/rtems_servers/Makefile.am @ 4855824

4.104.114.84.95
Last change on this file since 4855824 was 4855824, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/16/03 at 02:58:35

2003-01-15 Ralf Corsepius <corsepiu@…>

  • wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • pppd/Makefile.am: Don't include @RTEMS_BSP@.cfg. Eliminate *_O_FILES.
  • rtems_servers/Makefile.am: Ditto.
  • rtems_webserver/Makefile.am: Ditto.
  • rtems_telnetd/Makefile.am: Ditto.
  • Property mode set to 100644
File size: 831 bytes
Line 
1##
2## $Id$
3##
4
5include_rtemsdir = $(includedir)/rtems
6
7LIBNAME = lib.a
8LIB = $(ARCH)/$(LIBNAME)
9
10C_FILES = ftpd.c
11OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13include $(top_srcdir)/../../../automake/compile.am
14include $(top_srcdir)/../../../automake/lib.am
15
16#
17# Add local stuff here using +=
18#
19
20$(LIB): $(OBJS)
21        $(make-library)
22
23all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
24
25.PRECIOUS: $(LIB)
26
27EXTRA_DIST = ftpd.c ftpd.h
28
29include_HEADERS = ftpd.h
30
31include_rtems_HEADERS =
32
33PREINSTALL_FILES = $(PROJECT_INCLUDE) \
34   $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
35   $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
36
37$(PROJECT_INCLUDE)/%.h: %.h
38        $(INSTALL_DATA) $< $@
39$(PROJECT_INCLUDE)/rtems:
40        @$(mkinstalldirs) $@
41$(PROJECT_INCLUDE)/rtems/%.h: %.h
42        $(INSTALL_DATA) $< $@
43
44include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.