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

4.104.114.84.95
Last change on this file since 1a7ea60 was 1a7ea60, checked in by Joel Sherrill <joel.sherrill@…>, on 06/18/01 at 22:36:09

2001-05-26 Ralf Corsepius <corsepiu@…>

  • rtems_servers/Makefile.am: Deleted blank lines.
  • Property mode set to 100644
File size: 942 bytes
Line 
1##
2## $Id$
3##
4
5AUTOMAKE_OPTIONS = foreign 1.4
6
7include_rtemsdir = $(includedir)/rtems
8
9LIBNAME = lib.a
10LIB = $(ARCH)/$(LIBNAME)
11
12C_FILES = ftpd.c
13C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.o)
14
15OBJS = $(C_O_FILES)
16
17include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
18include $(top_srcdir)/../../../automake/compile.am
19include $(top_srcdir)/../../../automake/lib.am
20
21#
22# Add local stuff here using +=
23#
24
25$(LIB): $(OBJS)
26        $(make-library)
27
28all-local: $(PREINSTALL_FILES) $(ARCH) $(OBJS) $(LIB)
29
30.PRECIOUS: $(LIB)
31
32EXTRA_DIST = ftpd.c ftpd.h
33
34include_HEADERS = ftpd.h
35
36include_rtems_HEADERS = telnetd.h
37
38PREINSTALL_FILES += $(PROJECT_INCLUDE) \
39   $(include_HEADERS:%=$(PROJECT_INCLUDE)/%) \
40   $(include_rtems_HEADERS:%=$(PROJECT_INCLUDE)/rtems/%)
41
42$(PROJECT_INCLUDE)/%.h: %.h
43        $(INSTALL_DATA) $< $@
44$(PROJECT_INCLUDE)/rtems:
45        @$(mkinstalldirs) $@
46$(PROJECT_INCLUDE)/rtems/%.h: %.h
47        $(INSTALL_DATA) $< $@
48
49include $(top_srcdir)/../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.