File:  [local] / rpl / modules / motif / Makefile.am
Revision 1.14: download - view: text, annotated - select for diffs - revision graph
Wed Aug 23 09:40:53 2017 UTC (6 years, 9 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Ajout de XtOpenApplication.

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

CVSweb interface <joel.bertrand@systella.fr>