mirror of https://github.com/fairyglade/ly.git
removed static libs option in micmak
This commit is contained in:
parent
bc68be81f0
commit
53eba7a901
3
makefile
3
makefile
|
@ -12,7 +12,6 @@ INCD := src
|
||||||
BIND := build
|
BIND := build
|
||||||
OBJD := obj
|
OBJD := obj
|
||||||
DEPD := dep
|
DEPD := dep
|
||||||
LIBD := lib
|
|
||||||
LIBS := -lform -lncurses -lpam -lpam_misc -lX11
|
LIBS := -lform -lncurses -lpam -lpam_misc -lX11
|
||||||
LIBSUSR = -L/usr/lib/security -l:pam_loginuid.so
|
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))
|
DEPS := $(patsubst $(SRCD)/%.c,$(DEPD)/%.d,$(SRCS))
|
||||||
|
|
||||||
CXXFLAGS := -Wall -g -I$(INCD)
|
CXXFLAGS := -Wall -g -I$(INCD)
|
||||||
LDDFLAGS := -L$(LIBD) $(LIBS)
|
LDDFLAGS := $(LIBS)
|
||||||
|
|
||||||
.PHONY: all install uninstall clean distclean
|
.PHONY: all install uninstall clean distclean
|
||||||
.PRECIOUS: $(DEPD)/%.d
|
.PRECIOUS: $(DEPD)/%.d
|
||||||
|
|
Loading…
Reference in New Issue