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
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
CFLAGS=-std=c99 -Wall -Wextra -I./src/include -g
|
2018-01-14 04:38:58 +00:00
|
|
|
CLIBS=-lm -ldl
|
2017-02-09 20:02:59 +00:00
|
|
|
PREFIX=/usr/local
|
2017-09-09 18:39:51 +00:00
|
|
|
DST_TARGET=dst
|
2017-11-01 21:53:43 +00:00
|
|
|
DEBUGGER=lldb
|
2018-01-19 21:43:19 +00:00
|
|
|
|
2018-01-14 04:38:58 +00:00
|
|
|
DST_C_LIBS=$(addprefix libs/,testlib.so)
|
2017-03-16 00:56:37 +00:00
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
DST_HEADERS=$(sort $(wildcard src/include/dst/*.h))
|
|
|
|
DST_LIBHEADERS=$(sort $(wildcard src/include/headerlibs/*.h))
|
|
|
|
DST_ALL_HEADERS=$(DST_HEADERS) $(DST_LIB_HEADERS)
|
2017-11-06 03:05:47 +00:00
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
DST_ASM_SOURCES=$(sort $(wildcard src/assembler/*.c))
|
|
|
|
DST_COMPILER_SOURCES=$(sort $(wildcard src/compiler/*.c))
|
|
|
|
DST_CONTEXT_SOURCES=$(sort $(wildcard src/context/*.c))
|
|
|
|
DST_CORE_SOURCES=$(sort $(wildcard src/core/*.c))
|
|
|
|
DST_MAINCLIENT_SOURCES=$(sort $(wildcard src/mainclient/*.c))
|
|
|
|
DST_PARSER_SOURCES=$(sort $(wildcard src/parser/*.c))
|
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
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
########################################
|
|
|
|
##### The main interpreter program #####
|
|
|
|
########################################
|
2017-03-16 00:56:37 +00:00
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
DST_ALL_SOURCES=$(DST_ASM_SOURCES) \
|
|
|
|
$(DST_COMPILER_SOURCES) \
|
|
|
|
$(DST_CONTEXT_SOURCES) \
|
|
|
|
$(DST_CORE_SOURCES) \
|
|
|
|
$(DST_MAINCLIENT_SOURCES) \
|
|
|
|
$(DST_PARSER_SOURCES)
|
2017-03-16 00:56:37 +00:00
|
|
|
|
2018-01-19 21:43:19 +00:00
|
|
|
$(DST_TARGET): $(DST_ALL_SOURCES) $(DST_ALL_HEADERS)
|
|
|
|
$(CC) $(CFLAGS) -o $(DST_TARGET) $(DST_ALL_SOURCES) $(CLIBS)
|
2017-02-09 20:02:59 +00:00
|
|
|
|
2018-01-14 04:38:58 +00:00
|
|
|
#######################
|
|
|
|
##### C Libraries #####
|
|
|
|
#######################
|
|
|
|
|
|
|
|
%.so: %.c $(DST_HEADERS)
|
2018-01-16 01:14:21 +00:00
|
|
|
$(CC) $(CFLAGS) -DDST_LIB -shared -undefined dynamic_lookup -o $@ $<
|
2018-01-14 04:38:58 +00:00
|
|
|
|
2017-11-06 03:05:47 +00:00
|
|
|
###################
|
|
|
|
##### Testing #####
|
|
|
|
###################
|
|
|
|
|
2018-01-16 04:31:39 +00:00
|
|
|
repl: $(DST_TARGET)
|
2017-09-09 18:39:51 +00:00
|
|
|
@ ./$(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)
|
2018-01-19 21:43:19 +00:00
|
|
|
@ ./$(DST_TARGET) --gcinterval=0x10000 test/suite0.dst
|
2017-11-06 03:05:47 +00:00
|
|
|
|
|
|
|
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
|
2018-01-19 21:43:19 +00:00
|
|
|
rm src/**/*.o || true
|
2017-03-22 04:27:18 +00:00
|
|
|
rm vgcore.* || 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
|
|
|
|
2018-01-16 04:31:39 +00:00
|
|
|
.PHONY: clean install repl debug valgrind test valtest install uninstall
|