Revert openlibm install script

Turns out that this only worked because I didn't clean before rebuilding, so it still had access to the old files. Sorry.
This commit is contained in:
jD91mZM2
2018-06-24 20:19:06 +02:00
parent f265d7c5be
commit 320eb0ecd0
+2 -1
View File
@@ -38,7 +38,8 @@ install: all
cp -rv "target/include"/* "$(DESTDIR)/include"
cp -v "$(BUILD)/debug/libc.a" "$(DESTDIR)/lib"
cp -v "$(BUILD)/debug/crt0.o" "$(DESTDIR)/lib"
$(MAKE) -C openlibm install
cp -rv "openlibm/include"/* "$(DESTDIR)/include"
cp -rv "openlibm/src"/*.h "$(DESTDIR)/include"
libc: $(BUILD)/debug/libc.a $(BUILD)/debug/crt0.o