Annotation of rpl/modules/sets/Makefile.am, revision 1.10
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@ \
1.10 ! bertrand 33: -I$(top_builddir)/tools/@ICONV@ \
1.1 bertrand 34: -I$(top_builddir)/tools/@GSL@ \
1.9 bertrand 35: -I$(top_builddir)/tools/@NCURSES@/include \
36: -I$(top_builddir)/tools/@OPENSSL@/include \
37: -I$(top_srcdir)/tools/@SQLITE@ \
1.1 bertrand 38: @INCSIGSEGV@ \
39: -D_d_version_rpl=\"@VERSION@\" \
40: -c -o $@ $<
41:
42: sets.rplso: $(OBJ)
1.6 bertrand 43: @echo " RPLSO $@"
44: @gfortran -shared -g -o $@ $+
1.2 bertrand 45:
46: install: sets.rplso
47: $(INSTALL_DATA) sets.rplso $(DESTDIR)$(libdir)/sets.rplso
CVSweb interface <joel.bertrand@systella.fr>