2017-11-06 03:05:47 +00:00
|
|
|
# Copyright (c) 2017 Calvin Rose
|
|
|
|
#
|
|
|
|
# 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.
|
2017-02-09 20:02:59 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
################################
|
|
|
|
##### Set global variables #####
|
|
|
|
################################
|
2017-07-02 02:34:31 +00:00
|
|
|
|
2017-07-02 18:56:31 +00:00
|
|
|
PREFIX?=/usr/local
|
|
|
|
BINDIR=$(PREFIX)/bin
|
2017-07-02 02:34:31 +00:00
|
|
|
VERSION=\"0.0.0-beta\"
|
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
CFLAGS=-std=c99 -Wall -Wextra -I./include -I./libs -g -DDST_VERSION=$(VERSION)
|
2017-02-09 20:02:59 +00:00
|
|
|
PREFIX=/usr/local
|
2017-09-09 18:39:51 +00:00
|
|
|
DST_TARGET=dst
|
|
|
|
DST_XXD=xxd
|
2017-11-01 21:53:43 +00:00
|
|
|
DEBUGGER=lldb
|
2017-11-06 03:05:47 +00:00
|
|
|
DST_INTERNAL_HEADERS=$(addprefix core/,cache.h opcodes.h)
|
|
|
|
DST_HEADERS=$(addprefix include/dst/,dst.h)
|
2017-03-16 00:56:37 +00:00
|
|
|
|
2017-07-16 03:07:12 +00:00
|
|
|
#############################
|
|
|
|
##### Generated headers #####
|
|
|
|
#############################
|
2017-11-06 03:05:47 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
DST_LANG_SOURCES=$(addprefix libs/, bootstrap.dst)
|
|
|
|
DST_LANG_HEADERS=$(patsubst %.dst,%.gen.h,$(DST_LANG_SOURCES))
|
2017-11-06 03:05:47 +00:00
|
|
|
DST_ALL_HEADERS=$(DST_HEADERS) $(DST_INTERNAL_HEADERS) $(DST_LANG_HEADERS)
|
2017-07-15 16:21:06 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
all: $(DST_TARGET)
|
2017-03-16 00:56:37 +00:00
|
|
|
|
2017-07-16 03:07:12 +00:00
|
|
|
#######################
|
|
|
|
##### Build tools #####
|
|
|
|
#######################
|
2017-11-06 03:05:47 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
$(DST_XXD): libs/xxd.c
|
|
|
|
$(CC) -o $(DST_XXD) libs/xxd.c
|
2017-07-16 03:07:12 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
%.gen.h: %.dst $(DST_XXD)
|
|
|
|
./$(DST_XXD) $< $@ $(basename $(notdir $<))
|
2017-07-16 03:07:12 +00:00
|
|
|
|
2017-03-16 00:56:37 +00:00
|
|
|
###################################
|
|
|
|
##### The core vm and runtime #####
|
|
|
|
###################################
|
2017-11-06 03:05:47 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
DST_CORE_SOURCES=$(addprefix core/,\
|
2017-11-06 03:05:47 +00:00
|
|
|
array.c asm.c buffer.c cache.c fiber.c func.c gc.c parse.c string.c\
|
|
|
|
struct.c syscalls.c table.c tuple.c userdata.c util.c\
|
|
|
|
value.c vm.c wrap.c)
|
2017-09-09 18:39:51 +00:00
|
|
|
DST_CORE_OBJECTS=$(patsubst %.c,%.o,$(DST_CORE_SOURCES))
|
2017-03-16 00:56:37 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
$(DST_TARGET): $(DST_CORE_OBJECTS)
|
2017-09-09 18:39:51 +00:00
|
|
|
$(CC) $(CFLAGS) -o $(DST_TARGET) $(DST_CORE_OBJECTS)
|
2017-03-16 00:56:37 +00:00
|
|
|
|
|
|
|
# Compile all .c to .o
|
2017-11-06 03:05:47 +00:00
|
|
|
%.o: %.c $(DST_ALL_HEADERS)
|
2017-02-09 20:02:59 +00:00
|
|
|
$(CC) $(CFLAGS) -o $@ -c $<
|
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
######################
|
|
|
|
##### Unit Tests #####
|
|
|
|
######################
|
|
|
|
|
|
|
|
CCU_FLAGS = $(CFLAGS) -DDST_UNIT_TEST
|
|
|
|
|
|
|
|
DST_UNIT_BINARIES=$(addprefix unittests/,\
|
2017-11-06 14:44:10 +00:00
|
|
|
array_test.out buffer_test.out table_test.out)
|
2017-11-06 03:05:47 +00:00
|
|
|
|
|
|
|
%.out: %.c $(DST_CORE_OBJECTS) $(DST_ALL_HEADERS) unittests/unit.h
|
|
|
|
$(CC) $(CCU_FLAGS) $(DST_CORE_OBJECTS) $< -o $@
|
|
|
|
|
|
|
|
unit: $(DST_UNIT_BINARIES)
|
|
|
|
unittests/array_test.out
|
2017-11-06 14:44:10 +00:00
|
|
|
unittests/buffer_test.out
|
|
|
|
unittests/table_test.out
|
2017-11-06 03:05:47 +00:00
|
|
|
|
|
|
|
###################
|
|
|
|
##### Testing #####
|
|
|
|
###################
|
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
run: $(DST_TARGET)
|
|
|
|
@ ./$(DST_TARGET)
|
2017-02-09 20:02:59 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
debug: $(DST_TARGET)
|
|
|
|
@ $(DEBUGGER) ./$(DST_TARGET)
|
2017-02-09 20:02:59 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
valgrind: $(DST_TARGET)
|
|
|
|
@ valgrind --leak-check=full -v ./$(DST_TARGET)
|
2017-02-09 20:02:59 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
test: $(DST_TARGET)
|
|
|
|
@ ./$(DST_TARGET) dsttests/basic.dst
|
|
|
|
|
|
|
|
valtest: $(DST_TARGET)
|
|
|
|
valgrind --leak-check=full -v ./$(DST_TARGET) dsttests/basic.dst
|
|
|
|
|
|
|
|
#################
|
|
|
|
##### Other #####
|
|
|
|
#################
|
|
|
|
|
2017-03-16 00:56:37 +00:00
|
|
|
clean:
|
2017-09-09 18:39:51 +00:00
|
|
|
rm $(DST_TARGET) || true
|
|
|
|
rm $(DST_CORE_OBJECTS) || true
|
|
|
|
rm $(DST_LANG_HEADERS) || true
|
2017-03-22 04:27:18 +00:00
|
|
|
rm vgcore.* || true
|
2017-11-06 03:05:47 +00:00
|
|
|
rm unittests/*.out || true
|
2017-09-09 18:39:51 +00:00
|
|
|
rm $(DST_XXD) || true
|
2017-02-09 20:56:45 +00:00
|
|
|
|
2017-09-09 18:39:51 +00:00
|
|
|
install: $(DST_TARGET)
|
|
|
|
cp $(DST_TARGET) $(BINDIR)/dst
|
2017-07-02 18:56:31 +00:00
|
|
|
|
|
|
|
uninstall:
|
2017-09-09 18:39:51 +00:00
|
|
|
rm $(BINDIR)/dst
|
2017-07-02 18:56:31 +00:00
|
|
|
|
|
|
|
.PHONY: clean install run debug valgrind test valtest install uninstall
|