~unifont/unifont/trunk

« back to all changes in this revision

Viewing changes to src/Makefile

  • Committer: Samuel Bronson
  • Author(s): Paul Hardy
  • Date: 2009-08-10 21:54:24 UTC
  • Revision ID: naesten@gmail.com-20090810215424-acy265xnh51wzk8v
Import of http://www.unifoundry.com/pub/debian/unifont-5.1.20080914.tar.gz.

This update (7 September 2008) only changes the positioning of Unicode
combining diacritical marks in the TrueType version to better conform
to the standard. All glyph shapes otherwise are unchanged from the 20
August 2008 version.

[... but why don't the dates match? --Sam]

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
all: $(CPROGS)
28
28
        install -m0755 -d $(INSTALLBINDIR)
29
 
        install -s -m0755 -t $(INSTALLBINDIR) $(CPROGS)
30
 
        install    -m0755 -t $(INSTALLBINDIR) $(PPROGS)
 
29
        install -s -m0755 $(CPROGS) $(INSTALLBINDIR)
 
30
        install    -m0755 $(PPROGS) $(INSTALLBINDIR)
31
31
        rm -f $(CPROGS)
32
32
 
33
33
install:
40
40
        install -m0755 -d $(INSTALLDIR)
41
41
        set -e ; \
42
42
           cd $(INSTALLBINDIR) ; \
43
 
           install -s -m0755 -t $(INSTALLDIR) $(CPROGS)
 
43
           install -s -m0755 $(CPROGS) $(INSTALLDIR)
44
44
        set -e ; \
45
45
           cd ../bin ; \
46
 
           install    -m0755 -t $(INSTALLDIR) $(PPROGS)
 
46
           install    -m0755 $(PPROGS) $(INSTALLDIR)
47
47
 
48
48
#
49
49
# The *.exe is for cygwin; it does nothing elsewhere.