#
# Makefile
#

all: ls

ls: ls.c
	gcc ls.c -o ls

clean:
	/bin/rm -f ls *~ core
