source: rtems/cpukit/telnetd/Makefile.am @ 6436254a

4.104.114.84.95
Last change on this file since 6436254a was 6436254a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 02/09/04 at 14:57:18

2004-02-09 Ralf Corsepius <corsepiu@…>

  • libnetworking/pppd/Makefile.am, libnetworking/rtems_servers/Makefile.am, libnetworking/rtems_telnetd/Makefile.am, libnetworking/rtems_webserver/Makefile.am, optman/Makefile.am, support/Makefile.am: Don't include lib.am.
  • Property mode set to 100644
File size: 1.3 KB
Line 
1##
2## $Id$
3##
4
5include $(top_srcdir)/automake/compile.am
6
7EXTRA_LIBRARIES =
8CLEANFILES =
9
10if HAS_NETWORKING
11include_rtemsdir = $(includedir)/rtems
12include_rtems_HEADERS = pty.h telnetd.h
13
14EXTRA_LIBRARIES += libtelnetd.a
15CLEANFILES += libtelnetd.a
16libtelnetd_a_SOURCES = pty.c pty.h telnetd.c telnetd.h icmds.c
17libtelnetd_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_OPTIMIZE_V)
18
19EXTRA_LIBRARIES += libtelnetd_g.a
20CLEANFILES += libtelnetd_g.a
21libtelnetd_g_a_SOURCES = $(libtelnetd_a_SOURCES)
22libtelnetd_g_a_CPPFLAGS = $(AM_CPPFLAGS) $(CFLAGS_DEBUG_V)
23
24noinst_DATA = libtelnetd$(LIB_VARIANT).a
25endif
26
27EXTRA_DIST = README
28
29all-local: $(PREINSTALL_FILES)
30
31PREINSTALL_DIRS =
32PREINSTALL_FILES =
33
34if HAS_NETWORKING
35$(PROJECT_INCLUDE)/rtems/$(dirstamp):
36        @$(mkdir_p) $(PROJECT_INCLUDE)/rtems
37        @: > $(PROJECT_INCLUDE)/rtems/$(dirstamp)
38PREINSTALL_DIRS += $(PROJECT_INCLUDE)/rtems/$(dirstamp)
39
40$(PROJECT_INCLUDE)/rtems/pty.h: pty.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
41        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/pty.h
42PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/pty.h
43
44$(PROJECT_INCLUDE)/rtems/telnetd.h: telnetd.h $(PROJECT_INCLUDE)/rtems/$(dirstamp)
45        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/rtems/telnetd.h
46PREINSTALL_FILES += $(PROJECT_INCLUDE)/rtems/telnetd.h
47endif
48
49CLEANFILES += $(PREINSTALL_FILES)
50DISTCLEANFILES = $(PREINSTALL_DIRS)
51
52include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.