diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-09-19 17:59:50 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-09-19 19:39:01 +0200 |
commit | bc9216f5d6981ac571408ed73cfc72982a0e379f (patch) | |
tree | 62ea96f85d06d8bd73564f64df4ca08319654af5 /Makefile | |
parent | d89c25701381b393839ff38f93f198c4105b2c21 (diff) | |
download | matcha-threads-bc9216f5d6981ac571408ed73cfc72982a0e379f.tar.gz matcha-threads-bc9216f5d6981ac571408ed73cfc72982a0e379f.zip |
removed ranlib from makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -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) |