source: rtems/cpukit/telnetd/Makefile.am @ 4c14ea3e

4.104.114.84.95
Last change on this file since 4c14ea3e was 44213ad, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/02/05 at 00:54:34

2005-01-01 Ralf Corsepius <ralf.corsepius@…>

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