diff options
Diffstat (limited to 'lib/csu')
-rw-r--r-- | lib/csu/alpha/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/lib/csu/alpha/Makefile b/lib/csu/alpha/Makefile index 46c0277..fd9f545 100644 --- a/lib/csu/alpha/Makefile +++ b/lib/csu/alpha/Makefile @@ -1,13 +1,11 @@ # $FreeBSD$ .PATH: ${.CURDIR}/../common - -SRCS= crt1.c crti.S crtn.S -OBJS= ${SRCS:N*.h:R:S/$/.o/g} -OBJS+= gcrt1.o -CFLAGS+= -Wall -Wno-unused \ - -I${.CURDIR}/../common \ - -I${.CURDIR}/../../libc/include +SRCS= crt1.c crti.S crtn.S +OBJS= ${SRCS:N*.h:R:S/$/.o/g} +OBJS+= gcrt1.o +WARNS?= 6 +CFLAGS+= -I${.CURDIR}/../common -I${.CURDIR}/../../libc/include all: ${OBJS} |