OpenLibm/Make.inc

36 lines
688 B
PHP
Raw Normal View History

2011-12-31 14:56:51 +01:00
CC=gcc
CFLAGS=-O2 -fPIC -I. -I../include -I../ld128 -I../src -D__BSD_VISIBLE -Wno-implicit-function-declaration
2011-12-31 08:18:43 +01:00
2011-12-31 14:56:51 +01:00
default: all
2011-12-31 08:18:43 +01:00
%.o: %.c
$(QUIET_CC)$(CC) $(CFLAGS) -c $< -o $@
clean:
rm -f *.o *~
# OS-specific stuff
OS = $(shell uname)
ARCH = $(shell uname -m)
2011-12-31 08:18:43 +01:00
ifeq ($(OS), Linux)
SHLIB_EXT = so
endif
ifeq ($(OS), Darwin)
SHLIB_EXT = dylib
CFLAGS+=-std=c99
2011-12-31 08:18:43 +01:00
endif
# Colors for make
CCCOLOR="\033[34m"
LINKCOLOR="\033[34;1m"
SRCCOLOR="\033[33m"
BINCOLOR="\033[37;1m"
MAKECOLOR="\033[32;1m"
ENDCOLOR="\033[0m"
QUIET_CC = @printf ' %b %b\n' $(CCCOLOR)CC$(ENDCOLOR) $(SRCCOLOR)$@$(ENDCOLOR);
QUIET_LINK = @printf ' %b %b\n' $(LINKCOLOR)LINK$(ENDCOLOR) $(BINCOLOR)$@$(ENDCOLOR);