aboutsummaryrefslogtreecommitdiffstats
path: root/tools/balloon/Makefile
blob: 86108af67161702951be911375f65f6604771e9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = gcc
TARGET=balloon

$(TARGET): balloon.c
	$(CC) -O2 -Wall -o $(TARGET) balloon.c

install: $(TARGET)
	mkdir -p ../../../install/bin
	cp -a $(TARGET) ../../../install/bin

clean:
	$(RM) *.o $(TARGET) *~