summaryrefslogtreecommitdiff
path: root/libhashtable/Makefile
diff options
context:
space:
mode:
authorepochqwert <epoch@hacking.allowed.org>2015-03-31 13:38:31 -0500
committerepochqwert <epoch@hacking.allowed.org>2015-03-31 13:38:31 -0500
commit3b1466afd58e7cfbf5be09df8cfc52409171f5d3 (patch)
tree83ff40686c230866ac8c245366cacf4c9ed019cf /libhashtable/Makefile
parent7f43ddc3b96848b1a788a86ae663279dead86f27 (diff)
downloadsegfault-3b1466afd58e7cfbf5be09df8cfc52409171f5d3.tar.gz
segfault-3b1466afd58e7cfbf5be09df8cfc52409171f5d3.zip
moved libhashtable and libirc into their own repos.
Diffstat (limited to 'libhashtable/Makefile')
-rw-r--r--libhashtable/Makefile15
1 files changed, 0 insertions, 15 deletions
diff --git a/libhashtable/Makefile b/libhashtable/Makefile
deleted file mode 100644
index 6649739..0000000
--- a/libhashtable/Makefile
+++ /dev/null
@@ -1,15 +0,0 @@
-LDFLAGS=-lhashtable -Llibhashtable
-CFLAGS=-fpic -shared -pedantic -Wall
-TARGET=libhashtable.so
-
-all: $(TARGET)
-
-$(TARGET):
- $(CC) $(CFLAGS) -o $(TARGET) libhashtable.c
-
-clean:
- rm -f libhashtable.so
-
-install:
- cp $(TARGET) /usr/local/lib/$(TARGET)
- cp hashtable.h /usr/local/include/hashtable.h