~ubuntu-branches/ubuntu/lucid/gauche-c-wrapper/lucid

« back to all changes in this revision

Viewing changes to examples/sdl/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2008-04-07 09:15:03 UTC
  • Revision ID: james.westby@ubuntu.com-20080407091503-wu0h414koe95kj4i
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SOEXT = $(shell gauche-config --so-suffix)
 
2
 
 
3
sdllib.$(SOEXT): breakout.scm
 
4
        cwcompile --verbose breakout.scm
 
5
 
 
6
run: sdllib.$(SOEXT)
 
7
        gosh -I. breakout.scm
 
8
 
 
9
clean:
 
10
        cwcompile --verbose --clean breakout.scm
 
11