source: rtems/cpukit/ftpd/Makefile.am @ e6d8fe47

4.104.114.84.95
Last change on this file since e6d8fe47 was e6d8fe47, checked in by Joel Sherrill <joel.sherrill@…>, on 02/05/01 at 18:36:27

2001-02-03 Ralf Corsepius <corsepiu@…>

  • Makefile.am, arpa/Makefile.am, machine/Makefile.am, net/Makefile.am, netinet/Makefile.am, nfs/Makefile.am, rtems/Makefile.am, rtems_servers/Makefile.am, rtems_webserver/Makefile.am, sys/Makefile.am, vm/Makefile.am: Apply include_*HEADERS instead of H_FILES.
  • include/Makefile.am: Remove.
  • Makefile.am: Add handling of *.h files.
  • configure.in: Remove include/Makefile.
  • Property mode set to 100644
File size: 701 bytes
RevLine 
[df49c60]1##
[4bf1801]2## $Id$
[df49c60]3##
[4bf1801]4
5AUTOMAKE_OPTIONS = foreign 1.4
6
[e6d8fe47]7
8
9
[4bf1801]10LIBNAME = lib.a
11LIB = $(ARCH)/$(LIBNAME)
12
13C_FILES = ftpd.c
14C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
15
16OBJS = $(C_O_FILES)
17
18include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[9b28bea5]19include $(top_srcdir)/../../../automake/compile.am
[4bf1801]20include $(top_srcdir)/../../../automake/lib.am
21
22#
23# Add local stuff here using +=
24#
25
26$(LIB): $(OBJS)
27        $(make-library)
28
[df49c60]29all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
[4bf1801]30
31.PRECIOUS: $(LIB)
32
33EXTRA_DIST = ftpd.c ftpd.h
34
[e6d8fe47]35include_HEADERS = ftpd.h
[df49c60]36
[e6d8fe47]37PREINSTALL_FILES += $(PROJECT_INCLUDE) $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)
[df49c60]38
39$(PROJECT_INCLUDE)/%.h: %.h
40        $(INSTALL_DATA) $< $@
41
[4bf1801]42include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.