about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAli Fardan <raiz@stellarbound.space>2020-10-23 19:04:04 +0300
committerAli Fardan <raiz@stellarbound.space>2020-10-23 19:04:04 +0300
commitb753bcabd5306dba82abde4a791adddaae4c6c8f (patch)
treec5d8b05d9bb6ff1a92ea45e5b954191e0a880349
parentbce80af91d1e7953412db3538327a5c3609de83c (diff)
downloadlibgemtext-b753bcabd5306dba82abde4a791adddaae4c6c8f.tar.gz
makefile: add all as dependency for install
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 271bc75..eecd2b8 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ $(TARGET_LIB_STATIC): $(OBJS)
 $(TARGET_LIB_DYNAMIC): $(OBJS)
 	$(CC) -shared -o $@ $^
 
-install:
+install: all
 	mkdir -p $(PREFIX)/lib
 	cp -r $(TARGET_LIB_STATIC) $(PREFIX)/lib
 	cp -r $(TARGET_LIB_DYNAMIC) $(PREFIX)/lib