summaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-10-13 20:48:25 +0200
committermetamuffin <metamuffin@disroot.org>2024-10-13 20:48:25 +0200
commit21a9b4087b6612383ee4beb16c2576a4eeb6b38f (patch)
treed296c0ec5dc8569ded563ba46e648b426f4bf9f1 /makefile
parentc4aebdaddbb4806e98070a833f3608f18fc0a596 (diff)
downloadhurrycurry-21a9b4087b6612383ee4beb16c2576a4eeb6b38f.tar
hurrycurry-21a9b4087b6612383ee4beb16c2576a4eeb6b38f.tar.bz2
hurrycurry-21a9b4087b6612383ee4beb16c2576a4eeb6b38f.tar.zst
integrate book into build system
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/makefile b/makefile
index 4c70a3b2..1ee543b3 100644
--- a/makefile
+++ b/makefile
@@ -13,8 +13,8 @@
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
#
-.PHONY: all client pixel-client test-client server clean data
-all: data server client pixel-client test-client
+.PHONY: all client pixel-client test-client server clean data book
+all: data server client pixel-client test-client book
data:
make -C data all
@@ -26,6 +26,8 @@ pixel-client:
make -C pixel-client all
test-client:
make -C test-client all
+book:
+ make -C book all
clean:
make -C data clean