fix recursion

master
an 2019-08-05 20:00:36 -04:00
parent 804ce8e3ac
commit 379e48e038
1 changed files with 2 additions and 2 deletions

View File

@ -30,13 +30,13 @@ LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft -lXrender \
`$(PKG_CONFIG) --libs freetype2`
ifeq ($(OS),NetBSD)
LIBS = $(LIBS) -Wl,-rpath,$(X11LIB)
LIBS += -Wl,-rpath,$(X11LIB)
endif
# flags
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
ifeq ($(OS),NetBSD)
STCPPFLAGS = $(STCPPFLAGS) -D_BSD_SOURCE
STCPPFLAGS += -D_BSD_SOURCE
endif
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS) -mtune=native -march=native -O3 -pipe -fstack-protector-strong -fno-plt
STLDFLAGS = $(LIBS) $(LDFLAGS)