From 834128b8b088743a3ef91dd587ff8090a11ea115 Mon Sep 17 00:00:00 2001 From: nsz Date: Sun, 7 Oct 2012 22:09:51 +0200 Subject: [PATCH] fix the nonbin hack in Makefile.inc --- Makefile.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile.inc b/Makefile.inc index f23381b..9137e2b 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -4,8 +4,7 @@ LDFLAGS+=-g SRC=$(sort $(wildcard *.c)) OBJ=$(SRC:.c=.o) DSOOBJ=$(filter %_dso.o,$(OBJ)) -# TODO: fix this hack -BINOBJ=$(filter-out $(NONBIN),$(filter-out %_dso.o,$(OBJ))) +BINOBJ=$(filter-out %_dso.o,$(OBJ)) DSO=$(DSOOBJ:.o=.so) BIN=$(BINOBJ:.o=) -- 2.20.1