node/deps/uv/config-unix.mk

145 lines
4.3 KiB
Makefile
Raw Normal View History

2011-05-13 10:16:40 +08:00
# Copyright Joyent, Inc. and other Node contributors. All rights reserved.
#
# 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.
2011-07-15 05:28:52 +08:00
CC = $(PREFIX)gcc
AR = $(PREFIX)ar
2011-05-13 10:16:40 +08:00
E=
CSTDFLAG=--std=c89 -pedantic -Wall -Wextra -Wno-unused-parameter
2011-07-15 05:28:52 +08:00
CFLAGS=-g
CPPFLAGS += -Isrc/unix/ev
2011-05-13 10:16:40 +08:00
LINKFLAGS=-lm
2011-07-02 00:30:44 +08:00
CPPFLAGS += -D_LARGEFILE_SOURCE
CPPFLAGS += -D_FILE_OFFSET_BITS=64
2011-09-01 06:38:02 +08:00
OBJS += src/unix/core.o
OBJS += src/unix/fs.o
OBJS += src/unix/cares.o
OBJS += src/unix/udp.o
OBJS += src/unix/error.o
OBJS += src/unix/process.o
OBJS += src/unix/tcp.o
OBJS += src/unix/pipe.o
2011-09-13 05:53:27 +08:00
OBJS += src/unix/tty.o
2011-09-01 06:38:02 +08:00
OBJS += src/unix/stream.o
2011-05-13 10:16:40 +08:00
ifeq (SunOS,$(uname_S))
EV_CONFIG=config_sunos.h
2011-07-02 00:30:44 +08:00
EIO_CONFIG=config_sunos.h
2011-08-23 05:51:29 +08:00
CPPFLAGS += -Isrc/ares/config_sunos -D__EXTENSIONS__ -D_XOPEN_SOURCE=500
2011-05-13 10:16:40 +08:00
LINKFLAGS+=-lsocket -lnsl
2011-09-01 06:38:02 +08:00
OBJS += src/unix/sunos.o
endif
ifeq (Darwin,$(uname_S))
EV_CONFIG=config_darwin.h
2011-07-02 00:30:44 +08:00
EIO_CONFIG=config_darwin.h
CPPFLAGS += -Isrc/ares/config_darwin
LINKFLAGS+=-framework CoreServices
2011-09-01 06:38:02 +08:00
OBJS += src/unix/darwin.o
endif
ifeq (Linux,$(uname_S))
EV_CONFIG=config_linux.h
2011-07-02 00:30:44 +08:00
EIO_CONFIG=config_linux.h
2011-09-06 06:24:39 +08:00
CSTDFLAG += -D_GNU_SOURCE
CPPFLAGS += -Isrc/ares/config_linux
LINKFLAGS+=-lrt
2011-09-01 06:38:02 +08:00
OBJS += src/unix/linux.o
endif
ifeq (FreeBSD,$(uname_S))
EV_CONFIG=config_freebsd.h
2011-07-02 00:30:44 +08:00
EIO_CONFIG=config_freebsd.h
CPPFLAGS += -Isrc/ares/config_freebsd
LINKFLAGS+=
2011-09-01 06:38:02 +08:00
OBJS += src/unix/freebsd.o
2011-05-13 10:16:40 +08:00
endif
2011-09-09 05:29:12 +08:00
ifeq (NetBSD,$(uname_S))
EV_CONFIG=config_netbsd.h
EIO_CONFIG=config_netbsd.h
CPPFLAGS += -Isrc/ares/config_netbsd
LINKFLAGS+=
OBJS += src/unix/netbsd.o
endif
ifneq (,$(findstring CYGWIN,$(uname_S)))
EV_CONFIG=config_cygwin.h
EIO_CONFIG=config_cygwin.h
2011-07-21 00:06:16 +08:00
# We drop the --std=c89, it hides CLOCK_MONOTONIC on cygwin
CSTDFLAG = -D_GNU_SOURCE
CPPFLAGS += -Isrc/ares/config_cygwin
LINKFLAGS+=
2011-09-01 06:38:02 +08:00
OBJS += src/unix/cygwin.o
endif
2011-05-13 10:16:40 +08:00
# Need _GNU_SOURCE for strdup?
RUNNER_CFLAGS=$(CFLAGS) -D_GNU_SOURCE
2011-08-12 16:14:04 +08:00
RUNNER_LINKFLAGS=$(LINKFLAGS)
ifeq (SunOS,$(uname_S))
RUNNER_LINKFLAGS += -pthreads
else
RUNNER_LINKFLAGS += -pthread
endif
2011-05-13 10:16:40 +08:00
RUNNER_LIBS=
RUNNER_SRC=test/runner-unix.c
2011-09-01 06:38:02 +08:00
uv.a: $(OBJS) src/uv-common.o src/unix/ev/ev.o src/unix/uv-eio.o src/unix/eio/eio.o $(CARES_OBJS)
$(AR) rcs uv.a $(OBJS) src/uv-common.o src/unix/uv-eio.o src/unix/ev/ev.o src/unix/eio/eio.o $(CARES_OBJS)
2011-08-30 06:23:13 +08:00
2011-09-01 06:38:02 +08:00
src/unix/%.o: src/unix/%.c include/uv.h include/uv-private/uv-unix.h src/unix/internal.h
$(CC) $(CSTDFLAG) $(CPPFLAGS) -Isrc $(CFLAGS) -c $< -o $@
2011-05-13 10:16:40 +08:00
src/uv-common.o: src/uv-common.c include/uv.h include/uv-private/uv-unix.h
2011-07-15 05:28:52 +08:00
$(CC) $(CSTDFLAG) $(CPPFLAGS) $(CFLAGS) -c src/uv-common.c -o src/uv-common.o
src/unix/ev/ev.o: src/unix/ev/ev.c
$(CC) $(CPPFLAGS) $(CFLAGS) -c src/unix/ev/ev.c -o src/unix/ev/ev.o -DEV_CONFIG_H=\"$(EV_CONFIG)\"
2011-07-02 00:30:44 +08:00
EIO_CPPFLAGS += $(CPPFLAGS)
EIO_CPPFLAGS += -DEIO_CONFIG_H=\"$(EIO_CONFIG)\"
2011-07-30 06:43:56 +08:00
EIO_CPPFLAGS += -DEIO_STACKSIZE=262144
2011-07-02 00:30:44 +08:00
EIO_CPPFLAGS += -D_GNU_SOURCE
src/unix/eio/eio.o: src/unix/eio/eio.c
$(CC) $(EIO_CPPFLAGS) $(CFLAGS) -c src/unix/eio/eio.c -o src/unix/eio/eio.o
2011-07-02 00:30:44 +08:00
src/unix/uv-eio.o: src/unix/uv-eio.c
$(CC) $(CPPFLAGS) -Isrc/unix/eio/ $(CSTDFLAG) $(CFLAGS) -c src/unix/uv-eio.c -o src/unix/uv-eio.o
2011-07-02 00:30:44 +08:00
2011-05-13 10:16:40 +08:00
clean-platform:
-rm -f src/ares/*.o
-rm -f src/unix/ev/*.o
-rm -f src/unix/eio/*.o
-rm -f src/unix/*.o
-rm -rf test/run-tests.dSYM run-benchmarks.dSYM
2011-05-13 10:16:40 +08:00
distclean-platform:
-rm -f src/ares/*.o
-rm -f src/unix/ev/*.o
-rm -f src/unix/*.o
-rm -f src/unix/eio/*.o
-rm -rf test/run-tests.dSYM run-benchmarks.dSYM