- Unbreak with clang using -Wno-error=return-type (old K&R code) Approved by: miwi, eadler (mentors, implicit)
11 lines
128 B
Makefile
11 lines
128 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
all: sq usq
|
|
|
|
sq: sq.o tr1.o tr2.o sqio.o
|
|
${CC} ${CFLAGS} -o $@ $>
|
|
|
|
usq: usq.o utr.o
|
|
${CC} ${CFLAGS} -o $@ $>
|