소스 검색

Add build options for optional dependencies

master
Vlad Glagolev 8 년 전
부모
커밋
22436f747d
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile 파일 보기

@@ -11,12 +11,15 @@ LIBS := -lImlib2 -lX11 -lXft

# optional dependencies:
# giflib: gif animations
ifeq ($(WITH_GIFLIB), 1)
CPPFLAGS += -DHAVE_GIFLIB
LIBS += -lgif
endif
# libexif: jpeg auto-orientation, exif thumbnails
ifeq ($(WITH_LIBEXIF), 1)
CPPFLAGS += -DHAVE_LIBEXIF
LIBS += -lexif
endif

.PHONY: clean install uninstall



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