More build system tidies.
parent
1d071bf4c1
commit
06ff4be6a9
@ -1,20 +0,0 @@
|
||||
Copyright (c) 2009 David Chisnall
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
@ -1,30 +0,0 @@
|
||||
include $(GNUSTEP_MAKEFILES)/common.make
|
||||
|
||||
LIBRARY_NAME = toydispatch
|
||||
|
||||
toydispatch_VERSION = 1
|
||||
|
||||
toydispatch_C_FILES = \
|
||||
toydispatch.c
|
||||
|
||||
toydispatch_HEADER_FILES_INSTALL_DIR = toydispatch
|
||||
toydispatch_HEADER_FILES = \
|
||||
toydispatch.h
|
||||
|
||||
toydispatch_LIBRARIES_DEPEND_UPON += -lpthread
|
||||
|
||||
toydispatch_CFLAGS += -Werror -std=c99
|
||||
|
||||
ifneq ($(findstring gcc, $(CC)),)
|
||||
# Hack to get the __sync_* GCC builtins to work with GCC
|
||||
ifeq ($(GNUSTEP_TARGET_CPU), ix86)
|
||||
toydispatch_CFLAGS += -march=i586
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(GNUSTEP_TARGET_OS), mingw32)
|
||||
# Hack to get mingw to provide declaration for strdup (since it is non-standard)
|
||||
toydispatch_CPPFLAGS += -U__STRICT_ANSI__
|
||||
endif
|
||||
|
||||
include $(GNUSTEP_MAKEFILES)/library.make
|
||||
Loading…
Reference in New Issue