mirror of https://github.com/flysand7/ciabatta.git
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
|
|
CC=clang
|
|
SRC_DIR := src
|
|
OBJ_DIR := bin
|
|
IFLAGS := -Iinc -Isrc/win
|
|
|
|
# Detect target operating system
|
|
ifeq ($(OS),Windows_NT)
|
|
PLATFORM := win
|
|
else
|
|
PLATFORM := $(shell sh -c 'uname 2>/dev/null || echo Unknown')
|
|
PLATFORM := $(shell sh -c 'echo $(PLATFORM) | tr A-Z a-z')
|
|
endif
|
|
ifeq ($(PLATFORM),Unknown)
|
|
echo Unknown platform
|
|
exit 1
|
|
endif
|
|
|
|
# If we're compiling under windows we'll link to these libraries
|
|
ifeq ($(PLATFORM),win)
|
|
LIBS := -lDbghelp -lkernel32 -luser32 -lshell32
|
|
endif
|
|
|
|
# Compiler flags
|
|
ifeq ($(CC), clang)
|
|
CFLAGS=$(GNUFLAGS) -Werror -Wall -msse2 $(IFLAGS)
|
|
else
|
|
echo BAD CC
|
|
exit 1
|
|
endif
|
|
|
|
# Figure out what we want to compile at the end
|
|
SRC_FILES := $(wildcard $(SRC_DIR)/code/*.c) $(wildcard $(SRC_DIR)/$(PLATFORM)/*.c)
|
|
OBJ_FILES := $(patsubst $(SRC_DIR)/%.c,$(OBJ_DIR)/%.obj,$(SRC_FILES))
|
|
|
|
$(OBJ_DIR)/%.obj: $(SRC_DIR)/%.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
ciabatta.lib: $(OBJ_FILES)
|
|
llvm-ar rc $@ $^
|
|
|
|
test: ciabatta.lib
|
|
clang test/test_$(test).c ciabatta.lib -std=c11 $(LIBS) -nostdlib -Iinc
|
|
|
|
clean:
|
|
rd/s/q bin || true
|
|
rm -Rf bin || true
|
|
mkdir bin
|
|
mkdir bin/code
|
|
mkdir bin/win
|
|
mkdir bin/linux
|
|
|
|
.PHONY: ciabatta.lib test
|