source: rtems/cpukit/telnetd/Makefile.am @ 11a26b9

4.104.114.84.95
Last change on this file since 11a26b9 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: 818 bytes
Line 
1##
2## $Id$
3##
4
5
6LIBNAME = libtelnetd-tmp
7LIB = $(ARCH)/$(LIBNAME).a
8
9C_FILES = pty.c telnetd.c icmds.c
10OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
11
12
13include $(top_srcdir)/../../automake/compile.am
14include $(top_srcdir)/../../automake/lib.am
15
16$(PROJECT_INCLUDE)/rtems:
17        @$(mkinstalldirs) $@
18$(PROJECT_INCLUDE)/rtems/%.h: %.h
19        $(INSTALL_DATA) $< $@
20
21#
22# (OPTIONAL) Add local stuff here using +=
23#
24
25if HAS_NETWORKING
26include_rtemsdir = $(includedir)/rtems
27include_rtems_HEADERS = pty.h telnetd.h
28
29$(LIB): $(OBJS)
30        $(make-library)
31
32PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
33    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
34
35all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
36endif
37
38.PRECIOUS: $(LIB)
39
40EXTRA_DIST = README pty.c telnetd.c pty.h icmds.c telnetd.h
41
42include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.