aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2016-11-14 18:00:49 +0000
committerepochqwert <epoch@hacking.allowed.org>2016-11-14 18:00:49 +0000
commitc3856f9f1db26ab379dae9e750dc7b8b42705255 (patch)
tree4b62455708c77f53dc5a400e7e1b13337af63a81
parent09432da65f5adca6316cf1a37f2c8d61338c8222 (diff)
downloadlibhashtable-c3856f9f1db26ab379dae9e750dc7b8b42705255.tar.gz
libhashtable-c3856f9f1db26ab379dae9e750dc7b8b42705255.zip
made the Makefile a bit more sane.
-rw-r--r--Makefile16
-rw-r--r--README (renamed from README.md)0
2 files changed, 11 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index d448fa2..89e9937 100644
--- a/Makefile
+++ b/Makefile
@@ -1,16 +1,22 @@
-LDFLAGS=-lhashtable -Llibhashtable
+### why the fuck is this here? LDFLAGS=-lhashtable -Llibhashtable
CFLAGS=-fpic -shared -pedantic -Wall
+PREFIX=/usr/local
TARGET=libhashtable.so
all: $(TARGET)
-$(TARGET): libhashtable.c
+libhashtable.h:
./genheader.sh
- $(CC) $(CFLAGS) -o $(TARGET) libhashtable.c
+
+$(TARGET): libhashtable.c libhashtable.h
clean:
rm -f libhashtable.so
install:
- cp $(TARGET) /usr/local/lib/$(TARGET)
- cp hashtable.h /usr/local/include/hashtable.h
+ cp $(TARGET) $(PREFIX)/lib/$(TARGET)
+ cp hashtable.h $(PREFIX)/include/hashtable.h
+
+uninstall:
+ rm $(PREFIX)/lib/$(TARGET)
+ rm $(PREFIX)/include/hashtable.h
diff --git a/README.md b/README
index ba0967b..ba0967b 100644
--- a/README.md
+++ b/README