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

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

install: $(TARGET)
	cp  $(TARGET) ../../../install/bin

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