mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 12:03:31 +01:00
Move trace and other debug options from ytools.mk into defs.mk to make them visible to other projects, too
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
|
|
# (c) 2001 jannet it services
|
|
# contact@jannet.de
|
|
# $Id$
|
|
|
|
PROJECT := ytools
|
|
TOPDIR = $(MODDIR)
|
|
|
|
REQUIRED = inst/pre \
|
|
make \
|
|
doc \
|
|
debug misc slog platform \
|
|
devutil \
|
|
hash \
|
|
hexdump \
|
|
lbuffer \
|
|
debug \
|
|
cfgfile gtopts \
|
|
lock sigsync shmem \
|
|
usrv uclnt statecheck msgfmt \
|
|
YMisc YError \
|
|
YThread YMutex YEvent YCbContr contr/Y2WayMap \
|
|
YTimeB YStopWatch YStopWatchList YStopWatchQueue YStopWatchThreadList \
|
|
lib include bin \
|
|
inst/post
|
|
|
|
VERSION = @PACKAGE_VERSION@
|
|
VERSION_STR = \"@PACKAGE_VERSION@\"
|
|
DEVELOPMENT = @IS_DEVELOPMENT_VERSION@
|
|
|
|
# rpmdist.mk variables
|
|
MKSPEC_SH = $(MODDIR)/devutil/scripts/mkspec_wrapper.sh $(TOPDIR)/make/mkspec.sh
|
|
FTP_SRC_GROUP = ytsrc
|
|
FTP_SRC_USER = jan
|
|
FTP_RUN_GROUP = ytrun
|
|
FTP_RUN_USER = jan
|
|
FTP_DEV_GROUP = ytdev
|
|
FTP_DEV_USER = jan
|
|
FTP_HOST = ftp.jannet.de
|
|
FTP_FILE_MODE = 644
|
|
FTP_DIR_MODE = 755
|
|
#FTP_HOST = ftp.jannet.de
|
|
FTP_HOST_LOGIN = root
|
|
|
|
ifeq ($(DEVELOPMENT),true)
|
|
include $(TOPDIR)/make/cfg_dev.mk
|
|
else
|
|
include $(TOPDIR)/make/cfg_dist.mk
|
|
endif
|
|
|
|
LDFLAGS += -lytools -ldl -pthread
|