mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-19 17:50:51 +01:00
16 lines
489 B
Makefile
16 lines
489 B
Makefile
# @(#)Makefile 6.1 (Berkeley) 3/3/91
|
|
|
|
PROG= as
|
|
SRCS= app.c append.c as.c atof-generic.c bignum-copy.c \
|
|
expr.c flonum-const.c flonum-copy.c flonum-mult.c \
|
|
frags.c hash.c hex-value.c input-file.c input-scrub.c \
|
|
messages.c obstack.c output-file.c read.c subsegs.c \
|
|
symbols.c version.c write.c xmalloc.c xrealloc.c
|
|
CFLAGS+= -I$(.CURDIR) -I$(.CURDIR)/config \
|
|
-DSIGTY=void -Derror=as_fatal
|
|
.PATH: $(.CURDIR)/config
|
|
|
|
.include "config/Makefile.$(MACHINE)"
|
|
|
|
.include <bsd.prog.mk>
|