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

4.104.114.84.95
Last change on this file since a5f8ec56 was 2b44af21, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/11/02 at 06:03:16

2002-08-11 Ralf Corsepius <corsepiu@…>

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