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

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

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