# Makefile for 'execit' command

OUTDIR= $(HOME)/.bin

all: $(OUTDIR)/execit

$(OUTDIR)/execit: execit.c execit.include
	cc -O -s -o $@ execit.c
