shithub: scc

ref: 4f9f652f766f4ba4854889a45f1940737f3856c7
dir: /config.mk/

View raw version
# scc version
VERSION = 0.1

## Customize below to fit your system
ARCHS = z80 i386-sysv amd64-sysv qbe
# default architecure used in nested makefiles
ARCH = qbe
SYS = linux
DRIVER = posix

# Can be c89 or c99
STD = c99

# paths
PREFIX    = $(HOME)
MANPREFIX = $(PREFIX)/share/man

# scc expects to be built by a C99 compiler
# if your system is not at least POSIX 2004 compatible, adjust CC
# CC = c99
# AR = ar
AS = as

# for Plan9 add -D_SUSV2_SOURCE
SCC_CFLAGS = -DARCH=\"$(ARCH)\" \
             $(CSTDINC) \
             -DPREFIX=\"$(PREFIX)\" \
             -g \
             $(CFLAGS)

SCC_LDFLAGS = $(LDFLAGS)

.s.o:
	$(AS) $< -o $@

.c.o:
	$(CC) $(SCC_CFLAGS) -o $@ -c $<

.c:
	$(CC) $(SCC_CFLAGS) $(SCC_LDFLAGS) -o $@ $<