소스 검색

Also use pkg-config for regular ncurses

master
Sijmen J. Mulder 6 년 전
부모
커밋
599f4e82b7
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. +3
    -0
      Makefile

+ 3
- 0
Makefile 파일 보기

@@ -14,6 +14,9 @@ CFLAGS += $(CFLAGS_OPTIMIZATION)
ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncursesw)
LDLIBS += $(shell $(PKG_CONFIG) --libs ncursesw)
else ifeq ($(shell $(PKG_CONFIG) ncurses && echo 1),1)
CFLAGS += $(shell $(PKG_CONFIG) --cflags ncurses)
LDLIBS += $(shell $(PKG_CONFIG) --libs ncurses)
else
LDLIBS += -lncurses
endif


불러오는 중...
취소
저장