## FILE: GNUmakefile.local # # Project Tryst # # Creator Chris B. Vetter # Maintainer Chris B. Vetter # Creation Date Mon Sep 11 14:42:43 CEST 2006 # # Copyright (c) 2006 # # Tryst is free software under the terms of a dual BSD/LGPL license. # For a full copyright description, see the COPYRIGHT file. # ############################################################################ # # Additional flags to pass to the preprocessor # ifeq ($(findstring linux, $(GNUSTEP_TARGET_OS)), linux) ADDITIONAL_CPPFLAGS += -DNOT_HAVE_SA_LEN endif ifeq ($(findstring solaris, $(GNUSTEP_TARGET_OS)), solaris) ADDITIONAL_CPPFLAGS += -DNOT_HAVE_SA_LEN endif ifeq ($(verbose), yes) ADDITIONAL_CPPFLAGS += -DVERBOSE endif # # Additional flags to pass to the Objective-C compiler # ADDITIONAL_OBJCFLAGS += # # Additional flags to pass to the C compiler # ADDITIONAL_CFLAGS += # # Additional include directories the compiler should search # ADDITIONAL_INCLUDE_DIRS += # # Additional LDFLAGS to pass to the linker # ADDITIONAL_LDFLAGS += -ldns_sd ifeq ($(findstring solaris, $(GNUSTEP_TARGET_OS)), solaris) ADDITIONAL_LDFLAGS += -lsocket -lnsl endif # # Additional library directories the linker should search # ifeq ($(findstring freebsd, $(GNUSTEP_TARGET_OS)), freebsd) ADDITIONAL_LIB_DIRS += -L/usr/local/lib endif # # Additional tool directories the linker should search # ADDITIONAL_TOOL_LIBS += # # Additional directories to be created during installation # ADDITIONAL_INSTALL_DIRS += # # End of File.