head	1.1;
access;
symbols
	pkgsrc-2026Q1:1.1.0.6
	pkgsrc-2026Q1-base:1.1
	pkgsrc-2025Q4:1.1.0.4
	pkgsrc-2025Q4-base:1.1
	pkgsrc-2025Q3:1.1.0.2
	pkgsrc-2025Q3-base:1.1;
locks; strict;
comment	@# @;


1.1
date	2025.07.05.12.12.13;	author hauke;	state Exp;
branches;
next	;
commitid	MMfosBSUuOZTmy1G;


desc
@@


1.1
log
@asl is a portable macro cross assembler for a variety of
microprocessors and -controllers. Though it is mainly targeted at
embedded processors and single-board computers, you also find CPU
families in the target list that are used in workstations and PCs.

asl packages binaries and man pages; there is a separate
asl-doc package for the LaTeX generated PDF manual.
@
text
@# $NetBSD$

# -------------------------------------------------------------------------
# choose your compiler (must be ANSI-compliant!) and linker command, plus
# any additionally needed flags.  Also set target directory and file extensions:

# ...for host-side build tools:

OBJDIR = objects/
CC ?= cc
CFLAGS ?= -O2
HOST_OBJEXTENSION = .o
LD = $(CC)
LDFLAGS ?=
HOST_EXEXTENSION =

# ...for the actual build targets.  This is the simple case for no cross-build:

TARG_OBJDIR = $(OBJDIR)
TARG_CC = $(CC)
TARG_CFLAGS = $(CFLAGS)
TARG_OBJEXTENSION = $(HOST_OBJEXTENSION)
TARG_LD = $(LD)
TARG_LDFLAGS = $(LDFLAGS)
TARG_EXEXTENSION = $(HOST_EXEXTENSION)

# -------------------------------------------------------------------------
# directories where binaries, includes, and manpages should go during
# installation

BINDIR = ${DESTDIR}${PREFIX}/bin
INCDIR = ${DESTDIR}${PREFIX}/include/asl
MANDIR = ${DESTDIR}${PREFIX}/${PKGMANDIR}
LIBDIR = ${DESTDIR}${PREFIX}/lib
DOCDIR = ${DESTDIR}${PREFIX}/share/doc/asl
@
