Annotation of rpl/modules/motif/Makefile.am, revision 1.18
1.1 bertrand 1: SRCRPLC=\
1.4 bertrand 2: XSynchronize.rplc \
1.13 bertrand 3: XStoreName.rplc \
1.15 bertrand 4: XmSetIcon.rplc \
1.4 bertrand 5: XtAddCallback.rplc \
1.2 bertrand 6: XtAppExitMainLoop.rplc \
7: XtAppInitialize.rplc \
8: XtAppMainLoop.rplc \
1.4 bertrand 9: XtCreatePopupShell.rplc \
1.12 bertrand 10: XtCreateManagedWidget.rplc \
1.2 bertrand 11: XtCreateWidget.rplc \
1.4 bertrand 12: XtDestroyWidget.rplc \
1.14 bertrand 13: XtOpenApplication.rplc \
1.4 bertrand 14: XtPopdown.rplc \
15: XtPopup.rplc \
1.3 bertrand 16: XtRealizeWidget.rplc \
1.10 bertrand 17: XtRemoveCallback.rplc \
1.4 bertrand 18: callbacks.rplc \
1.2 bertrand 19: motif.rplc \
20: types.rplc
1.1 bertrand 21:
22: SRCH=\
23: motif.h
24:
25: EXAMPLES=\
26: example.rpl
27:
28: OBJ=$(SRCRPLC:.rplc=.o)
29:
30: all: motif.rplso
31:
1.4 bertrand 32: EXTRA_DIST = $(SRCRPLC) $(SRCH) $(EXAMPLES) definitions.sh
1.1 bertrand 33:
34: clean:
1.9 bertrand 35: \rm -f $(OBJ) motif.rplso variables.h
1.1 bertrand 36:
37: variables.h: definitions.sh
1.5 bertrand 38: @echo " DEF $@"
1.7 bertrand 39: @$(srcdir)/definitions.sh $(builddir) $(top_builddir) \
1.8 bertrand 40: $(top_builddir)/tools/@OPENMOTIF@/install/include
1.1 bertrand 41:
42: %.o: %.rplc $(SRCH) \
43: $(top_builddir)/src/rplexternals.h $(top_builddir)/src/rpl.h \
44: variables.h
1.4 bertrand 45: @echo " RPLC $@"
46: @gfortran -x c -fPIC -Wall -DRPLCONFIG -O2 -g -funsigned-char \
1.1 bertrand 47: -I$(top_srcdir) -I$(top_builddir)/src -I$(builddir) \
48: -DREADLINE_LIBRARY \
1.11 bertrand 49: -I$(top_builddir) \
1.1 bertrand 50: -I$(top_srcdir)/tools/@READLINE@ \
51: -I$(top_builddir)/tools/@READLINE@ \
1.18 ! bertrand 52: -I$(top_builddir)/tools/@ICONV@ \
1.16 bertrand 53: -I$(top_builddir)/tools/@OPENSSL@/include \
1.1 bertrand 54: -I$(top_builddir)/tools/@GSL@ \
1.16 bertrand 55: -I$(top_builddir)/tools/@NCURSES@/include \
1.15 bertrand 56: -I$(top_srcdir)/tools/@LIBXPM@/include \
1.16 bertrand 57: -I$(top_srcdir)/tools/@SQLITE@ \
1.2 bertrand 58: -I$(top_srcdir)/tools/@OPENMOTIF@/lib \
1.17 bertrand 59: -I$(top_builddir)/tools/@OPENMOTIF@/lib \
1.1 bertrand 60: @INCSIGSEGV@ \
61: -D_d_version_rpl=\"@VERSION@\" \
62: -c -o $@ $<
63:
64: motif.rplso: $(OBJ)
1.4 bertrand 65: @echo " RPLSO $@"
66: @gfortran -shared -g -o $@ $+
1.1 bertrand 67:
68: install: motif.rplso
69: $(INSTALL_DATA) $< $(DESTDIR)$(libdir)/$<
CVSweb interface <joel.bertrand@systella.fr>