#
# ${R_HOME}/src/modules/X11/Makefile
VPATH = @srcdir@
srcdir = @srcdir@
top_srcdir = @top_srcdir@
top_builddir = ../../..
subdir = src/modules/X11
R_HOME = $(top_builddir)
include $(top_builddir)/Makeconf
ALL_CPPFLAGS = $(R_XTRA_CPPFLAGS) $(X_CFLAGS) $(CPPFLAGS) $(DEFS)
ALL_CFLAGS = $(ALL_CFLAGS_LO)
ALL_X_LIBS = $(X_PRE_LIBS) $(X_LIBS) $(X_EXTRA_LIBS)
SOURCES = dataentry.c devX11.c rotated.c rbitmap.c
DEPENDS = $(SOURCES:.c=.d)
OBJECTS = $(SOURCES:.c=.o)
HEADERS = devX11.h rotated.h
distdir = $(top_builddir)/$(PACKAGE)-$(VERSION)/$(subdir)
DISTFILES = \
Makefile.in $(SOURCES) $(HEADERS)
R_X11_la = R_X11$(SHLIB_EXT)
## AIX needs LIBM
R_X11_la_LIBADD = $(ALL_X_LIBS) $(BITMAP_LIBS) $(LIBR) $(LIBM)
all: Makefile Makedeps R
Makefile: $(srcdir)/Makefile.in \
$(top_builddir)/config.status \
$(SOURCES)
@cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@
Makedeps: Makefile $(DEPENDS)
@cat $(DEPENDS) >> Makefile
@touch $@
R: Makefile
@$(MAKE) Makedeps
@$(MAKE) $(R_X11_la)
$(R_X11_la): $(OBJECTS)
$(SHLIB_LINK) -o $@ $(OBJECTS) $(R_X11_la_LIBADD)
## <FIXME>
## Not sure of we want to do this ...
@$(MAKE) rhome="$(abs_top_builddir)" install
## </FIXME>
install: installdirs
@$(SHELL) $(top_srcdir)/tools/copy-if-change $(R_X11_la) "$(Rexecmodulesdir)/$(R_X11_la)"
installdirs:
@$(MKINSTALLDIRS) "$(Rexecmodulesdir)"
install-strip:
$(MAKE) INSTALL_PROGRAM="${INSTALL_PROGRAM} -s" install
uninstall:
@rm -f "$(Rexecmodulesdir)/R_X11$(SHLIB_EXT)"
mostlyclean: clean
clean:
@-rm -rf .libs _libs
@-rm -f Makedeps *.d *.o *.a *.lo *.la *$(SHLIB_EXT)
distclean: clean
@-rm -f Makefile
maintainer-clean: distclean
TAGS info dvi check:
distdir: $(DISTFILES)
@for f in $(DISTFILES); do \
test -f $(distdir)/$${f} \
|| ln $(srcdir)/$${f} $(distdir)/$${f} 2>/dev/null \
|| cp -p $(srcdir)/$${f} $(distdir)/$${f}; \
done
## Automagically generated dependencies:
syntax highlighted by Code2HTML, v. 0.9.1