summaryrefslogtreecommitdiff
path: root/libs/surfaces/frontier/kernel_drivers/tests/Makefile
blob: 534bc7da4bce6dffc7b38445bf284f5a66f79892 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Some basic utilities for testing the tranzport's I/O
# eventually "tranzport" will become a flexible command
#
#

FILES:=tranzport tranzport_lights tranzport_tests.sh
BINDIR ?= $(DESTDIR)/usr/local/bin

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

install::
	cp $(FILES) $(BINDIR)