summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorsijanec <anton@sijanec.eu>2021-01-21 08:19:19 +0100
committersijanec <anton@sijanec.eu>2021-01-21 08:19:19 +0100
commit8f877a7a8a2bb81caeed24256baea4b54032b750 (patch)
treeb8c08e77ff3d5cd14d9438a5b408c8e9c943aca8 /Makefile
parenttweaks (diff)
downloadbverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.tar
bverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.tar.gz
bverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.tar.bz2
bverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.tar.lz
bverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.tar.xz
bverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.tar.zst
bverbose-8f877a7a8a2bb81caeed24256baea4b54032b750.zip
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 4 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index d17263d..bf4c3fd 100644
--- a/Makefile
+++ b/Makefile
@@ -3,17 +3,13 @@ default:
@echo "welcome to bverbose Makefile."
@echo "*** ONLY DEBIAN IS SUPPORTED (woah) ***"
@echo "targets are"
- @echo " make prepare installs dependencies - requires root"
@echo " make install compiles some useful binaries."
@echo "no target specified, exiting."
-prepare:
- sudo apt install libuuid1 uuid-dev -y
-
install:
mkdir -p bin
- gcc -I lib -I src test/tape-test.c -o bin/bvr-compose-single -luuid
- gcc test/compose-all-in-dir.c -I lib -I src -o bin/bvr-compose-html -luuid
- gcc test/jsbundle-test.c -I lib -I src -luuid -o bin/bvr-jsbundle
- gcc test/jsmin-test.c -I lib -I src -luuid -o bin/bvr-jsmin
+ gcc -I lib -I src test/tape-test.c -o bin/bvr-compose-single
+ gcc test/compose-all-in-dir.c -I lib -I src -o bin/bvr-compose-html
+ gcc test/jsbundle-test.c -I lib -I src -o bin/bvr-jsbundle
+ gcc test/jsmin-test.c -I lib -I src -o bin/bvr-jsmin
@echo "install target done, now you should add the bin directory to your PATH"