source: rtems/cpukit/telnetd/Makefile.am @ ff393f2

4.104.114.84.95
Last change on this file since ff393f2 was 4855824, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/16/03 at 02:58:35

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

  • wrapup/Makefile.am: Don't include @RTEMS_BSP@.cfg.
  • pppd/Makefile.am: Don't include @RTEMS_BSP@.cfg. Eliminate *_O_FILES.
  • rtems_servers/Makefile.am: Ditto.
  • rtems_webserver/Makefile.am: Ditto.
  • rtems_telnetd/Makefile.am: Ditto.
  • Property mode set to 100644
File size: 802 bytes
Line 
1##
2## $Id$
3##
4
5include_rtemsdir = $(includedir)/rtems
6
7LIBNAME = libtelnetd-tmp
8LIB = $(ARCH)/$(LIBNAME).a
9
10C_FILES = pty.c telnetd.c icmds.c
11OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
12
13include_rtems_HEADERS = pty.h telnetd.h
14
15include $(top_srcdir)/../../../automake/compile.am
16include $(top_srcdir)/../../../automake/lib.am
17
18$(PROJECT_INCLUDE)/rtems:
19        @$(mkinstalldirs) $@
20$(PROJECT_INCLUDE)/rtems/%.h: %.h
21        $(INSTALL_DATA) $< $@
22
23#
24# (OPTIONAL) Add local stuff here using +=
25#
26
27$(LIB): $(OBJS)
28        $(make-library)
29
30PREINSTALL_FILES = $(PROJECT_INCLUDE)/rtems \
31    $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
32
33all-local: $(ARCH) $(PREINSTALL_FILES) $(OBJS) $(LIB)
34
35.PRECIOUS: $(LIB)
36
37EXTRA_DIST = README pty.c telnetd.c pty.h icmds.c telnetd.h
38
39include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.