squared muscle

Former-commit-id: 54638fc7623ec0485109b0b5879144f8f2514213
Former-commit-id: 23f43cd31169d95df12ae1c207d9fd1c924d26b1
This commit is contained in:
alain viari
2015-11-14 00:11:27 +01:00
parent d52ebf0359
commit 085a5ff2a7
210 changed files with 20 additions and 54 deletions

View File

@ -118,10 +118,12 @@ INCDIR = $(abspath $(PRTDIR))/include
# default gmake variable in implicit rules # default gmake variable in implicit rules
# ------------------------------------ # ------------------------------------
CFLAGS := $(CFLAGS) $(OPTIM) $(MACHDEF) -I$(INCDIR) #CFLAGS := $(CFLAGS) $(OPTIM) $(MACHDEF) -I$(INCDIR)
CFLAGS = $(OPTIM) $(MACHDEF) -I$(INCDIR)
LDFLAGS := $(LDFLAGS) -L$(LIBDIR) -L. #LDFLAGS := $(LDFLAGS) -L$(LIBDIR) -L.
LDFLAGS = -L$(LIBDIR) -L.
LDLIBS = $(LIBS) $(MALLOC_LIBS) $(MATH_LIBS) $(CC_LIBS) LDLIBS = $(LIBS) $(MALLOC_LIBS) $(MATH_LIBS) $(CC_LIBS)
LINTFLAGS = $(MACHDEF) -I$(INCDIR) LINTFLAGS = $(MACHDEF) -I$(INCDIR)

View File

@ -34,7 +34,7 @@ all:: prelib $(PROGS) install
prelib:: prelib::
test -d $(PRTDIR) || mkdir $(PRTDIR) # because some linker may complain test -d $(PRTDIR) || mkdir $(PRTDIR) # because some linker may complain
test -d $(LIBDIR) || mkdir $(LIBDIR) # if -L$(LIBDIR) does not exist test -d $(LIBDIR) || mkdir $(LIBDIR) # if LIBDIR does not exist
install:: install::
test -d $(PRTDIR) || mkdir $(PRTDIR) test -d $(PRTDIR) || mkdir $(PRTDIR)

View File

@ -31,7 +31,6 @@ pkg.expand::
test -f $(PKGDIR)/configure || $(TAR) zxf $(PKGTAR) -C $(PKGDIR) --strip-components 1 test -f $(PKGDIR)/configure || $(TAR) zxf $(PKGTAR) -C $(PKGDIR) --strip-components 1
pkg.make:: pkg.expand pkg.make:: pkg.expand
echo $(PKG_CONFIG)
test -f $(PKGDIR)/Makefile || (export PATH="$(PRTPATH_BIN):$$PATH" && \ test -f $(PKGDIR)/Makefile || (export PATH="$(PRTPATH_BIN):$$PATH" && \
export PKG_CONFIG=$(PKG_CONFIG) && \ export PKG_CONFIG=$(PKG_CONFIG) && \
export CC="$(CC)" && \ export CC="$(CC)" && \

View File

@ -22,7 +22,3 @@ include $(CFGDIR)targets/package.targ
include $(CFGDIR)targets/help.targ include $(CFGDIR)targets/help.targ
# bug fix
all::
-mkdir $(PKGDIR)/userguide

View File

@ -22,9 +22,3 @@ DIRS = lxpack
include ../../config/targets/propagate.targ include ../../config/targets/propagate.targ
include ../../config/targets/help.targ include ../../config/targets/help.targ
all::
$(MAKE) ACTION=$@ _action
clean::
$(MAKE) -C lxpack portclean

View File

@ -22,9 +22,3 @@ DIRS = muscle3.8.31
include ../../config/targets/propagate.targ include ../../config/targets/propagate.targ
include ../../config/targets/help.targ include ../../config/targets/help.targ
all::
$(MAKE) ACTION=$@ _action
clean::
$(MAKE) -C lxpack portclean

View File

@ -2,29 +2,24 @@
# $Id: $ # $Id: $
# --------------------------------------------------------------- # ---------------------------------------------------------------
# @file: Makefile # @file: Makefile
# @desc: makefile for lxpack # @desc: makefile for muscle
#
# @history:
# @history:
# @+ <Gloup> : Apr 97 : Created
# @+ <Gloup> : Mar 02 : Updated for LXxware
#
# @note: should be processed with gnu compatible make
# @note: helixware_compatible
#
# @end:
# --------------------------------------------------------------- # ---------------------------------------------------------------
# #
include ../../../config/auto.conf include ../../../config/auto.conf
DIRS = src all: muscle install
include ../../../config/targets/propagate.targ muscle:
chmod +x ./mk
(export CXX=$(CXX) && ./mk)
include ../../../config/targets/help.targ test:
all:: install:
$(MAKE) ACTION=$@ _action cp muscle $(BINDIR)
clean:
-\rm -f *.o muscle
clean:: portclean: clean
$(MAKE) -C lxpack portclean -\rm -f $(BINDIR)/muscle

Some files were not shown because too many files have changed in this diff Show More