Paul Davis
449aab3c46
git-svn-id: svn://localhost/ardour2/branches/3.0@3435 d708f5d6-7413-0410-9779-e7cbd77b26cf
18 lines
429 B
Makefile
18 lines
429 B
Makefile
# Some basic utilities for testing the tranzport's I/O
|
|
# eventually "tranzport" will become a flexible command
|
|
#
|
|
#
|
|
all: tranzport tranzport_lights
|
|
|
|
tranzport: tranzport.c
|
|
gcc -g -Wall -o tranzport tranzport.c
|
|
|
|
tranzport_lights: tranzport_lights.c
|
|
gcc -g -Wall -o tranzport_lights tranzport_lights.c
|
|
|
|
clean::
|
|
rm -f core .*.cmd *.o *.ko *.mod.c Module.symvers *.bak .\#* *~
|
|
rm -rf .tmp_versions tranzport tranzport_lights
|
|
|
|
|