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

« back to all changes in this revision

Viewing changes to test/Makefile

  • 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,v 1.19.2.7.2.41 2004/04/11 04:39:00 easysw Exp $"
 
2
# "$Id: Makefile,v 1.19.2.7.2.42 2004/08/26 22:24:24 matthiaswm Exp $"
3
3
#
4
4
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
5
5
#
26
26
include ../makeinclude
27
27
 
28
28
CPPFILES =\
 
29
        unittests.cxx \
29
30
        adjuster.cxx \
30
31
        arc.cxx \
31
32
        ask.cxx \
89
90
        valuators.cxx
90
91
 
91
92
ALL =   \
 
93
        unittests$(EXEEXT) \
92
94
        adjuster$(EXEEXT) \
93
95
        arc$(EXEEXT) \
94
96
        ask$(EXEEXT) \
181
183
$(ALL): ../lib/$(LIBNAME)
182
184
 
183
185
# General demos...
 
186
unittests$(EXEEXT): unittests.o
 
187
 
184
188
adjuster$(EXEEXT): adjuster.o
185
189
 
186
190
arc$(EXEEXT): arc.o
372
376
 
373
377
 
374
378
#
375
 
# End of "$Id: Makefile,v 1.19.2.7.2.41 2004/04/11 04:39:00 easysw Exp $".
 
379
# End of "$Id: Makefile,v 1.19.2.7.2.42 2004/08/26 22:24:24 matthiaswm Exp $".
376
380
#