File:  [local] / rpl / modules / motif / Makefile.am
Revision 1.12: download - view: text, annotated - select for diffs - revision graph
Tue Aug 22 11:22:04 2017 UTC (6 years, 8 months ago) by bertrand
Branches: MAIN
CVS tags: HEAD
Ajout de la fonction XtCreateManagedWidget.

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

CVSweb interface <joel.bertrand@systella.fr>