Skip to content

Commit

Permalink
Merge pull request #10 from olebole/mkfloat.sh
Browse files Browse the repository at this point in the history
Use mkfloat in mkpkg
  • Loading branch information
olebole authored May 22, 2019
2 parents 371234c + 6e5a062 commit 67ec1c3
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions mkpkg
Original file line number Diff line number Diff line change
Expand Up @@ -63,15 +63,15 @@ summary:
arch: # show current float option
showfloat:
$verbose off
!$(hlib)/mkfloat.csh
!$(hlib)/mkfloat
;
generic: # generic installation (no bin)
$ifnfile (bin.generic)
!mkdir bin.generic
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh generic -d $(DIRS)
!$(hlib)/mkfloat generic -d $(DIRS)
;

freebsd: # install FreeBSD binaries
Expand All @@ -80,77 +80,77 @@ freebsd: # install FreeBSD binaries
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh freebsd -d $(DIRS)
!$(hlib)/mkfloat freebsd -d $(DIRS)
;
linux: # install Slackwkare Linux binaries
$ifnfile (bin.linux)
!mkdir bin.linux
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh linux -d $(DIRS)
!$(hlib)/mkfloat linux -d $(DIRS)
;
linux64: # install x86_64 binaries
$ifnfile (bin.linux64)
!mkdir bin.linux64
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh linux64 -d $(DIRS)
!$(hlib)/mkfloat linux64 -d $(DIRS)
;
macosx: # install Mac OS X (PPC) binaries
$ifnfile (bin.macosx)
!mkdir bin.macosx
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh macosx -d $(DIRS)
!$(hlib)/mkfloat macosx -d $(DIRS)
;
macintel: # install Mac OS X (Intel) binaries
$ifnfile (bin.macintel)
!mkdir bin.macintel
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh macintel -d $(DIRS)
!$(hlib)/mkfloat macintel -d $(DIRS)
;
cygwin: # install Cygwin binaries
$ifnfile (bin.cygwin)
!mkdir bin.cygwin
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh cygwin -d $(DIRS)
!$(hlib)/mkfloat cygwin -d $(DIRS)
;
redhat: # install Redhat Linux binaries
$ifnfile (bin.redhat)
!mkdir bin.redhat
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh redhat -d $(DIRS)
!$(hlib)/mkfloat redhat -d $(DIRS)
;
sparc: # install sparc binaries
$ifnfile (bin.sparc)
!mkdir bin.sparc
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh sparc -d $(DIRS)
!$(hlib)/mkfloat sparc -d $(DIRS)
;
ssun: # install Sun/Solaris binaries
$ifnfile (bin.ssun)
!mkdir bin.ssun
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh ssun -d $(DIRS)
!$(hlib)/mkfloat ssun -d $(DIRS)
;
sunos: # install SunOS (Solaris x86) binaries
$ifnfile (bin.sunos)
!mkdir bin.sunos
$endif
$verbose off
$set DIRS = "lib src"
!$(hlib)/mkfloat.csh sunos -d $(DIRS)
!$(hlib)/mkfloat sunos -d $(DIRS)
;

0 comments on commit 67ec1c3

Please sign in to comment.