From 53eba7a9011ca7c7342e287a43a7cbb8f1681148 Mon Sep 17 00:00:00 2001 From: cylgom Date: Sun, 26 Nov 2017 11:51:29 +0100 Subject: [PATCH] removed static libs option in micmak --- makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/makefile b/makefile index 362cb50..85705c4 100755 --- a/makefile +++ b/makefile @@ -12,7 +12,6 @@ INCD := src BIND := build OBJD := obj DEPD := dep -LIBD := lib LIBS := -lform -lncurses -lpam -lpam_misc -lX11 LIBSUSR = -L/usr/lib/security -l:pam_loginuid.so @@ -25,7 +24,7 @@ OBJS := $(patsubst $(SRCD)/%.c,$(OBJD)/%.o,$(SRCS)) DEPS := $(patsubst $(SRCD)/%.c,$(DEPD)/%.d,$(SRCS)) CXXFLAGS := -Wall -g -I$(INCD) -LDDFLAGS := -L$(LIBD) $(LIBS) +LDDFLAGS := $(LIBS) .PHONY: all install uninstall clean distclean .PRECIOUS: $(DEPD)/%.d