source: rtems/c/src/libchip/rtc/Makefile.am @ ec463ac

4.104.114.84.95
Last change on this file since ec463ac was ec463ac, checked in by Ralf Corsepius <ralf.corsepius@…>, on 07/10/03 at 08:07:50

2003-07-10 Ralf Corsepius <corsepiu@…>

  • configure.ac: Remove (Merged into ../configure.ac).
  • Makefile.am, ide/Makefile.am, network/Makefile.am, rtc/Makefile.am, serial/Makefile.am: Reflect having merged configure.ac into ../configure.ac
  • Property mode set to 100644
File size: 962 bytes
Line 
1##
2## $Id$
3##
4
5
6include_libchipdir = $(includedir)/libchip
7
8LIBNAME = librtcio
9LIB = $(ARCH)/$(LIBNAME).a
10
11C_FILES = rtcprobe.c icm7170.c icm7170_reg.c icm7170_reg2.c icm7170_reg4.c \
12    icm7170_reg8.c m48t08.c m48t08_reg.c m48t08_reg2.c m48t08_reg4.c \
13    m48t08_reg8.c
14
15OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
16
17include_libchip_HEADERS = rtc.h icm7170.h m48t08.h
18
19include $(top_srcdir)/../../automake/compile.am
20include $(top_srcdir)/../../automake/lib.am
21
22PREINSTALL_FILES = $(PROJECT_INCLUDE)/libchip \
23    $(include_libchip_HEADERS:%=$(PROJECT_INCLUDE)/libchip/%)
24
25$(PROJECT_INCLUDE)/libchip:
26        @$(mkinstalldirs) $@
27$(PROJECT_INCLUDE)/libchip/%.h: %.h
28        $(INSTALL_DATA) $< $@
29
30#
31# Add local stuff here using +=
32#
33
34$(LIB): $(OBJS)
35        $(make-library)
36
37all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
38
39DOC_FILES = README.ds1643 README.icm7170 README.m48t08 README.m48t18 STATUS
40
41EXTRA_DIST = $(C_FILES) $(DOC_FILES)
42
43include $(top_srcdir)/../../automake/local.am
Note: See TracBrowser for help on using the repository browser.