aboutsummaryrefslogtreecommitdiffstats
path: root/GNUmakefile
diff options
context:
space:
mode:
authorepoch <epoch@hack.thebackupbox.net>2019-05-19 09:23:09 +0000
committerepoch <epoch@hack.thebackupbox.net>2019-05-19 09:23:09 +0000
commite02e4b69e237d16f19530b071fbb081a811e8ebe (patch)
treef3b52639891d378c1bd4bc08c4e0b27dc7483ddd /GNUmakefile
parent5ed56236f1ee57e71c91d356c7160aedc6e515f0 (diff)
downloadlibidc-e02e4b69e237d16f19530b071fbb081a811e8ebe.tar.gz
libidc-e02e4b69e237d16f19530b071fbb081a811e8ebe.zip
renamed everything to idc from line.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile13
1 files changed, 7 insertions, 6 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 12237ab..fc8701d 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,14 +1,15 @@
CFLAGS=-fpic -shared -pedantic -Wall -g3
-TARGET=libline.so
+TARGET=libidc.so
PREFIX:=/usr/local
-all: libline.so ircify
+all: libidc.so ircify
-ircify: LDLIBS=-Lline
+ircify: LDLIBS=-lidc
+ircify: CFLAGS=-g3 -Wall -pedantic
ircify: ircify.c
-$(TARGET): libline.o
- ld -shared -o $(TARGET) libline.o
+$(TARGET): libidc.o
+ ld -shared -o $(TARGET) libidc.o
clean:
rm -f $(TARGET) ircify
@@ -18,4 +19,4 @@ install: all
mkdir -p $(PREFIX)/lib
mkdir -p $(PREFIX)/include
install $(TARGET) $(PREFIX)/lib/$(TARGET)
- install line.h $(PREFIX)/include/line.h
+ install idc.h $(PREFIX)/include/idc.h