You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
# Makefile for cln
|
|
|
|
#### Start of system configuration section. ####
|
|
|
|
# Directories used by "make install":
|
|
prefix = @prefix@
|
|
local_prefix = /usr/local
|
|
exec_prefix = @exec_prefix@
|
|
datadir = @datadir@
|
|
libdir = @libdir@
|
|
includedir = @includedir@
|
|
mandir = @mandir@
|
|
|
|
# Programs used by "make":
|
|
CC = @CC@
|
|
CFLAGS = @CFLAGS@
|
|
RM = rm -f
|
|
@SET_MAKE@
|
|
|
|
#### End of system configuration section. ####
|
|
|
|
SHELL = /bin/sh
|
|
|
|
all : force
|
|
cd @subdir@; $(MAKE) all
|
|
|
|
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
|
|
cd @subdir@; $(MAKE) mostlyclean
|
|
|
|
clean : force
|
|
cd @subdir@; $(MAKE) clean
|
|
|
|
distclean : force
|
|
cd @subdir@; if test -f Makefile; then $(MAKE) distclean; fi
|
|
$(RM) config.status config.log config.cache Makefile
|
|
$(RM) libtool
|
|
$(RM) include/cl_config.h include/cl_intparam.h include/cl_floatparam.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h
|
|
|
|
maintainer-clean : force
|
|
cd @subdir@; if test -f Makefile; then $(MAKE) maintainer-clean; fi
|
|
$(RM) config.status config.log config.cache Makefile
|
|
$(RM) libtool
|
|
$(RM) include/cl_config.h include/cl_intparam.h include/cl_floatparam.h src/base/cl_base_config.h src/base/cl_gmpconfig.h src/float/cl_float_config.h src/timing/cl_t_config.h
|
|
|
|
force :
|
|
|