#
# Makefile.
#
# Mark Claypool, 2017
#

all: ss

ss: ss.c
	gcc ss.c -o ss

clean:
	/bin/rm -f ss
	/bin/rm -f *~ core a.out
