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