1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
# Makefile for cln
#### Start of system configuration section. ####
# Directories used by "make install":
prefix = @prefix@
local_prefix = /usr/local
exec_prefix = $(prefix)
libdir = $(exec_prefix)/lib
includedir = $(prefix)/include
mandir = $(exec_prefix)/man
# Programs used by "make":
CC = @CC@
CFLAGS = @CFLAGS@
CXXFLAGS = @CXXFLAGS@
RM = rm -f
@SET_MAKE@
#### End of system configuration section. ####
SHELL = /bin/sh
all : force
if test -f gmp/Makefile; then cd gmp && $(MAKE) mpn/libmpn.a \
ASFLAGS=$(ASFLAGS) CC='$(CC)' CFLAGS='$(CFLAGS)'; fi
cd @subdir@; $(MAKE) CC='$(CC)' CFLAGS='$(CFLAGS)' CXXFLAGS='$(CXXFLAGS)' all
shared: force
if test -f gmp/Makefile; then cd gmp && $(MAKE) mpn/libmpn.a \
ASFLAGS=$(ASFLAGS) CC='$(CC)' CFLAGS='$(CFLAGS)'; fi
cd src; $(MAKE) CC='$(CC)' CFLAGS='$(CFLAGS)' CXXFLAGS='$(CXXFLAGS)' VMAJ='$(VMAJ)' allshared
install : force
cd @subdir@; $(MAKE) install
installdirs : force
cd @subdir@; $(MAKE) installdirs
uninstall : force
cd @subdir@; $(MAKE) uninstall
check : force
cd @subdir@; $(MAKE) check
mostlyclean : force
if test -f gmp/Makefile; then cd gmp; $(MAKE) mostlyclean; fi
cd @subdir@; $(MAKE) mostlyclean
clean : force
if test -f gmp/Makefile; then cd gmp; $(MAKE) clean; fi
cd @subdir@; $(MAKE) clean
distclean : force
if test -f gmp/Makefile; then cd gmp; $(MAKE) distclean; fi
cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
$(RM) config.status config.log config.cache Makefile
$(RM) include/cl_config.h include/cl_intparam.h include/cl_floatparam.h
maintainer-clean : force
if test -f gmp/Makefile; then cd gmp; $(MAKE) maintainer-clean; fi
cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
$(RM) config.status config.log config.cache Makefile
$(RM) include/cl_config.h include/cl_intparam.h include/cl_floatparam.h
force :
|