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

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

CVSweb interface <joel.bertrand@systella.fr>