~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to makefiles/Makefile.mingw

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#
2
 
# "$Id: Makefile.mingw,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $"
 
2
# "$Id: Makefile.mingw,v 1.1.2.2.2.1 2004/10/18 20:22:22 easysw Exp $"
3
3
#
4
4
# Top-level makefile for the Fast Light Tool Kit (FLTK).
5
5
#
44
44
 
45
45
 
46
46
all: makeinclude config.h
 
47
        echo "=== making zlib ==="
 
48
        touch zlib/makedepend
 
49
        cd zlib ; $(MAKE)
 
50
        echo "=== making jpeg ==="
 
51
        touch jpeg/makedepend
 
52
        cd jpeg ; $(MAKE)
 
53
        echo "=== making png ==="
 
54
        touch png/makedepend
 
55
        cd png ; $(MAKE)
47
56
        echo "=== making src ==="
48
57
        touch src/makedepend
49
58
        cd src ; $(MAKE)
55
64
        cd test ; $(MAKE)
56
65
 
57
66
install:
 
67
        echo "=== installing zlib ==="
 
68
        touch zlib/makedepend
 
69
        cd zlib ; $(MAKE) install
 
70
        echo "=== installing jpeg ==="
 
71
        touch jpeg/makedepend
 
72
        cd jpeg ; $(MAKE) install
 
73
        echo "=== installing png ==="
 
74
        touch png/makedepend
 
75
        cd png ; $(MAKE) install
58
76
        echo "=== installing src ==="
59
77
        touch src/makedepend
60
78
        cd src ; $(MAKE) install
92
110
        cp $< $@
93
111
 
94
112
#
95
 
# End of "$Id: Makefile.mingw,v 1.1.2.2 2001/01/22 15:13:39 easysw Exp $".
 
113
# End of "$Id: Makefile.mingw,v 1.1.2.2.2.1 2004/10/18 20:22:22 easysw Exp $".
96
114
#