source: rtems/cpukit/ftpd/Makefile.am @ 633456e

4.104.114.84.95
Last change on this file since 633456e was 633456e, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/15/04 at 03:47:28

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

  • Makefile.am: Remove wrapup.
  • pppd/Makefile.am: Build libpppd. Use automake-compilation rules.
  • rtems_servers/Makefile.am: Build libftpd. Use automake-compilation rules.
  • rtems_telnetd/Makefile.am: Build libtelnetd. Use automake-compilation rules.
  • rtems_webserver/Makefile.am: Build libhttpd. Use automake-compilation rules.
  • wrapup/Makefile.am: Remove (Unused).
  • Property mode set to 100644
File size: 981 bytes
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6include $(top_srcdir)/automake/lib.am
7
8CLEANFILES =
9EXTRA_LIBRARIES =
10
11if HAS_NETWORKING
12include_HEADERS = ftpd.h
13
14EXTRA_LIBRARIES += libftpd.a
15CLEANFILES += libftpd.a
16libftpd_a_SOURCES = ftpd.c ftpd.h
17libftpd_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
18
19EXTRA_LIBRARIES += libftpd_g.a
20CLEANFILES += libftpd_g.a
21libftpd_g_a_SOURCES = $(libftpd_a_SOURCES)
22libftpd_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
23
24noinst_DATA = libftpd$(LIB_VARIANT).a
25endif
26
27all-local: $(PREINSTALL_FILES)
28
29PREINSTALL_FILES =
30
31$(PROJECT_INCLUDE)/$(dirstamp):
32        @$(mkdir_p) $(PROJECT_INCLUDE)
33        @: > $(PROJECT_INCLUDE)/$(dirstamp)
34PREINSTALL_FILES += $(PROJECT_INCLUDE)/$(dirstamp)
35
36if HAS_NETWORKING
37$(PROJECT_INCLUDE)/ftpd.h: ftpd.h $(PROJECT_INCLUDE)/$(dirstamp)
38        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/ftpd.h
39PREINSTALL_FILES += $(PROJECT_INCLUDE)/ftpd.h
40endif
41
42CLEANFILES += $(PREINSTALL_FILES)
43
44include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.