all: cut paste


paste:  paste.c spaste.c getopt.c
	cc -Dvoid=int -Oas -c paste.c spaste.c getopt.c
	cc -o paste paste.o spaste.o getopt.o
cut:    cut.c getopt.c
	cc -Dvoid=int -Oas -c cut.c getopt.c
	cc -o cut cut.o getopt.o

lint: lint_cut lint_paste

lint_cut:
	lint cut.c getopt.c

lint_paste:
	lint paste.c spaste.c getopt.c

