mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 05:30:31 -04:00
ChangeLog: http://john.ccac.rwth-aachen.de:8000/as/changelog PR: 251650 Submitted by: kevinz5000@gmail.com Reviewed by: doconnor@gsoft.com.au (maintainer)
29 lines
761 B
Modula-2
29 lines
761 B
Modula-2
# -------------------------------------------------------------------------
|
|
# choose your compiler (must be ANSI-compliant!) and linker command, plus
|
|
# any additionally needed flags
|
|
|
|
OBJDIR =
|
|
HOST_OBJEXTENSION = .o
|
|
LD = $(CC)
|
|
LDFLAGS =
|
|
HOST_EXEXTENSION =
|
|
|
|
# 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 = ${PREFIX}/bin
|
|
INCDIR = ${PREFIX}/include/asl
|
|
MANDIR = ${PREFIX}/man
|
|
LIBDIR = ${PREFIX}/lib/asl
|
|
DOCDIR = ${PREFIX}/share/doc/asl
|