source: rtems/c/src/libnetworking/rtems_servers/Makefile.am @ d0d73ec

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