~ubuntu-branches/ubuntu/utopic/ardour3/utopic

« back to all changes in this revision

Viewing changes to libs/surfaces/frontier/tests/Makefile

  • Committer: Package Import Robot
  • Author(s): Felipe Sateler
  • Date: 2013-09-21 19:05:02 UTC
  • Revision ID: package-import@ubuntu.com-20130921190502-8gsftrku6jnzhd7v
Tags: upstream-3.4~dfsg
ImportĀ upstreamĀ versionĀ 3.4~dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Some basic utilities for testing the tranzport's I/O
 
2
# eventually "tranzport" will become a flexible command
 
3
#
 
4
#
 
5
all: tranzport tranzport_lights
 
6
 
 
7
tranzport: tranzport.c
 
8
        gcc -g -Wall -o tranzport tranzport.c 
 
9
 
 
10
tranzport_lights: tranzport_lights.c
 
11
        gcc -g -Wall -o tranzport_lights tranzport_lights.c 
 
12
 
 
13
clean:: 
 
14
        rm -f core .*.cmd *.o *.ko *.mod.c Module.symvers *.bak .\#* *~
 
15
        rm -rf .tmp_versions tranzport tranzport_lights
 
16
 
 
17