Merged with trunk R1612.
[ardour.git] / libs / surfaces / frontier / kernel_drivers / tests / Makefile
1 # Some basic utilities for testing the tranzport's I/O
2 # eventually "tranzport" will become a flexible command
3 #
4 #
5
6 FILES:=tranzport tranzport_lights tranzport_tests.sh
7 BINDIR ?= $(DESTDIR)/usr/local/bin
8
9 all: tranzport tranzport_lights
10
11 tranzport: tranzport.c
12         gcc -g -Wall -o tranzport tranzport.c 
13
14 tranzport_lights: tranzport_lights.c
15         gcc -g -Wall -o tranzport_lights tranzport_lights.c 
16
17 clean:: 
18         rm -f core .*.cmd *.o *.ko *.mod.c Module.symvers *.bak .\#* *~
19         rm -rf .tmp_versions tranzport tranzport_lights
20
21 install::
22         cp $(FILES) $(BINDIR)
23