aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DEPENDENCIES4
-rw-r--r--Makefile4
2 files changed, 4 insertions, 4 deletions
diff --git a/DEPENDENCIES b/DEPENDENCIES
index 51b0281..445852e 100644
--- a/DEPENDENCIES
+++ b/DEPENDENCIES
@@ -23,7 +23,7 @@ BUILD DEPENDENCIES:
grep
sed
coreutils
- gcc
+ c99
general-preprocessor (gpp)
python3
texinfo Optional: for info, pdf, ps and dvi manuals
@@ -46,7 +46,7 @@ DEPENDENCIES SOURCES:
grep https://www.gnu.org/software/grep
sed https://www.gnu.org/software/sed
coreutils https://www.gnu.org/software/coreutils
- gcc https://gcc.gnu.org
+ c99 https://gcc.gnu.org
general-preprocessor (gpp) https://github.com/maandree/gpp
python3 https://www.python.org/
texinfo https://www.gnu.org/software/texinfo/
diff --git a/Makefile b/Makefile
index db6ff5e..f088418 100644
--- a/Makefile
+++ b/Makefile
@@ -114,11 +114,11 @@ bin/libgamma.so.$(LIB_VERSION): $(foreach O,$(LIBOBJ),obj/lib/$(O).o)
bin/libgamma.so.$(LIB_MAJOR):
mkdir -p $(shell dirname $@)
- ln -s libgamma.so.$(LIB_VERSION) $@
+ ln -sf libgamma.so.$(LIB_VERSION) $@
bin/libgamma.so:
mkdir -p $(shell dirname $@)
- ln -s libgamma.so.$(LIB_VERSION) $@
+ ln -sf libgamma.so.$(LIB_VERSION) $@
obj/lib/%.o: src/lib/%.c src/lib/*.h
mkdir -p $(shell dirname $@)