aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorjohannst <johannes.stoelp@gmail.com>2020-09-19 17:59:50 +0200
committerjohannst <johannes.stoelp@gmail.com>2020-09-19 19:39:01 +0200
commitbc9216f5d6981ac571408ed73cfc72982a0e379f (patch)
tree62ea96f85d06d8bd73564f64df4ca08319654af5 /Makefile
parentd89c25701381b393839ff38f93f198c4105b2c21 (diff)
downloadmatcha-threads-bc9216f5d6981ac571408ed73cfc72982a0e379f.tar.gz
matcha-threads-bc9216f5d6981ac571408ed73cfc72982a0e379f.zip
removed ranlib from makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 0 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ab48a9d..67dfdc5 100644
--- a/Makefile
+++ b/Makefile
@@ -2,11 +2,9 @@ AS := gcc
CXX := g++
CXXFLAGS := -g -O0 -Wall -Wextra -I.
AR := ar
-RANLIB := ranlib
lib/libmatcha.a: lib/matcha.o lib/thread_create.o lib/matcha.h
$(AR) rcs $@ $(filter %.o,$^)
- $(RANLIB) $@
%.o: %.cc
$(CXX) -c -o $@ $^ $(CXXFLAGS)