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

4.104.114.84.95
Last change on this file since 4108ae8 was 4078e82, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/25/03 at 06:15:38

2003-07-25 Ralf Corsepius <corsepiu@…>

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