Annotation of rpl/modules/sets/Makefile.am, revision 1.5

1.1       bertrand    1: SRCRPLC=\
1.3       bertrand    2:    complement.rplc\
                      3:    intersection.rplc\
1.1       bertrand    4:    sets.rplc\
                      5:    types.rplc\
                      6:    union.rplc
                      7: 
                      8: SRCH=\
                      9:     sets.h
                     10: 
1.5     ! bertrand   11: EXAMPLES=\
        !            12:    example.rpl
        !            13: 
1.1       bertrand   14: OBJ=$(SRCRPLC:.rplc=.o)
                     15: 
                     16: all: sets.rplso
                     17: 
1.5     ! bertrand   18: EXTRA_DIST = $(SRCRPLC) $(SRCH) $(EXAMPLES)
1.2       bertrand   19: 
1.1       bertrand   20: clean:
                     21:    \rm -f $(OBJ) sets.rplso
                     22: 
1.4       bertrand   23: %.o: %.rplc $(SRCH) $(top_builddir)/src/rplexternals.h $(top_builddir)/src/rpl.h
1.1       bertrand   24:    gfortran -x c -fPIC -Wall -DRPLCONFIG -O2 -g -funsigned-char \
                     25:            -I$(top_srcdir) -I$(top_builddir)/src \
                     26:            -DREADLINE_LIBRARY \
                     27:            -I$(top_srcdir)/tools/@READLINE@ \
                     28:            -I$(top_builddir)/tools/@READLINE@ \
                     29:            -I$(top_builddir)/tools/@GSL@ \
                     30:            @INCSIGSEGV@ \
                     31:            -D_d_version_rpl=\"@VERSION@\" \
                     32:            -c -o $@ $<
                     33: 
                     34: sets.rplso: $(OBJ)
                     35:    gfortran -shared -g -o $@ $+
1.2       bertrand   36: 
                     37: install: sets.rplso
                     38:    $(INSTALL_DATA) sets.rplso $(DESTDIR)$(libdir)/sets.rplso

CVSweb interface <joel.bertrand@systella.fr>