mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
cad6c0c117
configurable limits on jobs on a per queue basis as well as for the total queue system. It is based on the de facto NQS standards and is interoperable with commercial NQS products. PR: 6699 Submitted by: Tony Maher <tonym@angis.org.au>
16 lines
262 B
Makefile
16 lines
262 B
Makefile
#
|
|
#
|
|
|
|
HOSTNAME= `uname -n`
|
|
RELEASE= `uname -r | cut -d'-' -f 1`
|
|
HARDWARE= `uname -m`
|
|
PLATFORM= ${HARDWARE}-unknown-freebsd${RELEASE}
|
|
|
|
all:
|
|
@ cd Build-Tree/${PLATFORM}/${HOSTNAME}; \
|
|
$(MAKE)
|
|
|
|
install:
|
|
@ cd Build-Tree/${PLATFORM}/${HOSTNAME}; \
|
|
$(MAKE) install
|