source: rtems/cpukit/ftpd/Makefile.am @ 01d48bf8

4.104.114.84.95
Last change on this file since 01d48bf8 was 01d48bf8, checked in by Joel Sherrill <joel.sherrill@…>, on 03/28/02 at 00:49:43

2002-03-27 Ralf Corsepius <corsepiu@…>

  • configure.ac: AC_INIT(package,_RTEMS_VERSION,_RTEMS_BUGS). AM_INIT_AUTOMAKE([no-define foreign 1.6]).
  • arpa/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • kern/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Makefile.am: Remove AUTOMAKE_OPTIONS.
  • lib/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • libc/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • machine/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • net/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • netinet/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • nfs/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • pppd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_servers/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_telnetd/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • rtems_webserver/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • sys/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • vm/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • wrapup/Makefile.am: Remove AUTOMAKE_OPTIONS.
  • Property mode set to 100644
File size: 900 bytes
RevLine 
[df49c60]1##
[4bf1801]2## $Id$
[df49c60]3##
[4bf1801]4
5
[1a7ea60]6include_rtemsdir = $(includedir)/rtems
[e6d8fe47]7
[4bf1801]8LIBNAME = lib.a
9LIB = $(ARCH)/$(LIBNAME)
10
11C_FILES = ftpd.c
12C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
13
14OBJS = $(C_O_FILES)
15
16include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
[9b28bea5]17include $(top_srcdir)/../../../automake/compile.am
[4bf1801]18include $(top_srcdir)/../../../automake/lib.am
19
20#
21# Add local stuff here using +=
22#
23
24$(LIB): $(OBJS)
25        $(make-library)
26
[df49c60]27all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
[4bf1801]28
29.PRECIOUS: $(LIB)
30
31EXTRA_DIST = ftpd.c ftpd.h
32
[e6d8fe47]33include_HEADERS = ftpd.h
[df49c60]34
[bd520203]35include_rtems_HEADERS =
[451198be]36
[b68e01c5]37PREINSTALL_FILES = $(PROJECT_INCLUDE) \
[451198be]38   $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
39   $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
[df49c60]40
41$(PROJECT_INCLUDE)/%.h: %.h
42        $(INSTALL_DATA) $< $@
[451198be]43$(PROJECT_INCLUDE)/rtems:
44        @$(mkinstalldirs) $@
45$(PROJECT_INCLUDE)/rtems/%.h: %.h
46        $(INSTALL_DATA) $< $@
[df49c60]47
[4bf1801]48include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.