aboutsummaryrefslogtreecommitdiffstats
path: root/tools/balloon/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/balloon/Makefile')
-rw-r--r--tools/balloon/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/balloon/Makefile b/tools/balloon/Makefile
index 49bab90077..dd88eab72a 100644
--- a/tools/balloon/Makefile
+++ b/tools/balloon/Makefile
@@ -1,9 +1,12 @@
CC = gcc
TARGET=balloon
-TARGET: balloon.c
+$(TARGET): balloon.c
$(CC) -O2 -Wall -o $(TARGET) balloon.c
+install: $(TARGET)
+ cp $(TARGET) ../../../install/bin
+
clean:
$(RM) *.o $(TARGET) *~