aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndreas Lindhé <andreas@lindhe.io>2017-10-31 13:50:36 +0100
committerAndreas Lindhé <andreas@lindhe.io>2017-10-31 14:46:05 +0100
commitda4c77d51f971e6abe838db76d55c7fc4c103d5d (patch)
tree1f2373a25bda4ac3c3a5f5200f6c358510256dd6 /Makefile
parent87779bb56295a2c20076c9670522490b91789dc0 (diff)
downloadmidbro-da4c77d51f971e6abe838db76d55c7fc4c103d5d.tar.gz
midbro-da4c77d51f971e6abe838db76d55c7fc4c103d5d.tar.bz2
Repo cleanup
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 02d9f66..d50fb9e 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ DEBUG =
SRC = midbro.c broevent.c fifoqueue.c
OBJ = $(patsubst %.c, build/%.o, $(SRC))
-all: dirs lib/midbro bin/pasad
+all: dirs lib/midbro
dirs:
mkdir -p build bin lib
@@ -18,9 +18,6 @@ lib/midbro: $(OBJ)
midbro_test:
$(CC) test/midbro_test.c -I./includes -o bin/midbro_test -L./lib -lmidbro
-bin/pasad: build/pasad.o
- $(CC) $^ $(INC) -o $@ -Llib -lmidbro -Wl,-rpath=$(shell pwd)/lib
-
build/%.o: src/%.c
$(CC) $(LIBCFLAGS) $(DEBUG) $(INC) $< -o $@