664a39852b
Signed-off-by: Chloe M. <chloe@mensia.org>
19 lines
258 B
Makefile
19 lines
258 B
Makefile
#
|
|
# Copyright (c) 2026, Chloe M.
|
|
# Provided under the BSD-3 clause
|
|
#
|
|
# Description: Top-level build script
|
|
# Author: Chloe M.
|
|
#
|
|
|
|
.PHONY: all
|
|
all: core extractor
|
|
|
|
.PHONY: core
|
|
core:
|
|
cd core/; $(MAKE)
|
|
|
|
.PHONY: extractor
|
|
extractor:
|
|
cd extractor/; $(MAKE)
|