30 lines
873 B
Makefile
30 lines
873 B
Makefile
#
|
|
# Copyright 2001, QNX Software Systems Ltd. All Rights Reserved
|
|
#
|
|
# This source code has been published by QNX Software Systems Ltd. (QSSL).
|
|
# However, any use, reproduction, modification, distribution or transfer of
|
|
# this software, or any software which includes or is based upon any of this
|
|
# code, is only permitted under the terms of the QNX Community License version
|
|
# 1.0 (see licensing.qnx.com for details) or as otherwise expressly authorized
|
|
# by a written license agreement from QSSL. For more information, please email
|
|
# licensing@qnx.com.
|
|
#
|
|
#
|
|
ifndef QCONFIG
|
|
QCONFIG=qconfig.mk
|
|
endif
|
|
include $(QCONFIG)
|
|
|
|
define PINFO
|
|
PINFO DESCRIPTION=POSIX message queue and named semaphore daemon
|
|
endef
|
|
|
|
EXTRA_CCDEPS = $(wildcard $(PROJECT_ROOT)/*.h)
|
|
CCFLAGS += -DMQUEUE_1_THREAD
|
|
|
|
INSTALLDIR=sbin
|
|
|
|
USEFILE=$(PROJECT_ROOT)/options.c
|
|
|
|
include $(MKFILES_ROOT)/qtargets.mk
|