mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
b7e5135427
It is able to handle 16-bit code as well, and comes with an own assembler and loader. (They are already known from Minix and Linux as the `bin86' package.) With a bit of `dd' magic, bcc can be used to compile messdos programs.
19 lines
256 B
Makefile
19 lines
256 B
Makefile
.include "../Makefile.inc"
|
|
|
|
.PATH: ../bcc-cc1
|
|
|
|
CFLAGS += -DNSIG=32
|
|
CFLAGS += -Wall
|
|
CFLAGS += -DLOCALPREFIX=\"${LOCALPREFIX}\"
|
|
LDFLAGS =
|
|
|
|
|
|
SRCS = bcc.c
|
|
|
|
PROG = bcc
|
|
|
|
BINDIR = ${LOCALPREFIX}/bin
|
|
MANDIR = ${LOCALPREFIX}/man/man
|
|
|
|
.include <bsd.prog.mk>
|