# Makefile for bashdoor.c 
# By bob
# www.dtors.net

CC = gcc

default : bashdoor

bashdoor :  bashdoor.c
	$(CC) bashdoor.c -o bashdoor

