summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/serdbg/Makefile.am
blob: e09d24b8dcf327d5da42e0c56553bd3680714be2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
##
## $Id$
##

include_rtemsdir = $(includedir)/rtems

LIBNAME = libserdbg
LIB = $(ARCH)/$(LIBNAME).a

C_FILES = serdbg.c serdbgio.c termios_printk.c
OBJS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))

if LIBSERDBG
include_HEADERS = serdbgcnf.h serdbg.h termios_printk_cnf.h \
                  termios_printk.h
endif

include $(top_srcdir)/automake/compile.am
include $(top_srcdir)/automake/lib.am

AM_CPPFLAGS += -I$(top_builddir)

$(PROJECT_INCLUDE):
	@$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/%.h: %.h
	$(INSTALL_DATA) $< $@

#
# (OPTIONAL) Add local stuff here using +=
#

$(LIB): $(OBJS)
	$(make-library)

PREINSTALL_FILES = $(PROJECT_INCLUDE) \
    $(include_HEADERS:%=$(PROJECT_INCLUDE)/%)

if LIBSERDBG
all-local: $(ARCH) $(PREINSTALL_FILES) $(LIB)
endif

.PRECIOUS: $(LIB)

EXTRA_DIST = README serdbg.c serdbgio.c serdbgcnf.h serdbg.h \
             termios_printk.c termios_printk.h termios_printk_cnf.h

include $(top_srcdir)/automake/local.am