- fix attributes
[pingofdeath.git] / Makefile
1 # Makefile for building and installing the application
2 #   level tools for the Planetlab "ping of death" feature.
3 #
4 # Targets are:
5 # all: builds all of the components
6 # install: installes the tools into the planetlab bin directory
7 # test: runs the tests on the current machine
8 #
9
10 ALLBUILD=pl-poddoit pod 
11
12 all: $(ALLBUILD)
13
14 pod: pod.src disable_pod.sh  enable_pod.sh  status_pod.sh
15         ./shell_include --source pod.src --destination pod 
16
17 pl-poddoit: pl-poddoit.c
18         gcc pl-poddoit.c -o pl-poddoit
19
20 clean:
21         rm -f pod pl-poddoit
22