source: rtems/cpukit/ftpd/Makefile.am @ 451198be

4.104.114.84.95
Last change on this file since 451198be was 451198be, checked in by Joel Sherrill <joel.sherrill@…>, on 06/14/01 at 13:35:47

2001-06-14 Joel Sherrill <joel@…>

  • rtems_servers/telnetd.c, shell/telnetd.h: Moved from libmisc/shell

so the network stack to address network depenendency.

  • rtems_servers/Makefile.am: Modified to reflect above.
  • Property mode set to 100644
File size: 905 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7
8
9
10LIBNAME = lib.a
11LIB = $(ARCH)/$(LIBNAME)
12
13C_FILES = ftpd.c
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
15
16OBJS = $(C_O_FILES)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
19include $(top_srcdir)/../../../automake/compile.am
20include $(top_srcdir)/../../../automake/lib.am
21
22#
23# Add local stuff here using +=
24#
25
26$(LIB): $(OBJS)
27        $(make-library)
28
29all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
30
31.PRECIOUS: $(LIB)
32
33EXTRA_DIST = ftpd.c ftpd.h
34
35include_HEADERS = ftpd.h
36
37include_rtems_HEADERS = telnetd.h
38
39PREINSTALL_FILES += $(PROJECT_INCLUDE) \
40   $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
41   $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
42
43$(PROJECT_INCLUDE)/%.h: %.h
44        $(INSTALL_DATA) $< $@
45$(PROJECT_INCLUDE)/rtems:
46        @$(mkinstalldirs) $@
47$(PROJECT_INCLUDE)/rtems/%.h: %.h
48        $(INSTALL_DATA) $< $@
49
50include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.