diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2016-03-24 10:45:11 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2016-03-24 10:45:11 +0100 |
commit | 19c335cd7f53d759ec04e96e0d96ed7258f4521c (patch) | |
tree | df8b7c68932407313dcbfbf3867e6c4656a9fe48 /GNUmakefile | |
parent | 0aa8fef0aeca565aa87fb658fcfdc3e5f713079b (diff) | |
download | fbida-19c335cd7f53d759ec04e96e0d96ed7258f4521c.tar.gz |
add drm support, console switching fixes
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/GNUmakefile b/GNUmakefile index 82bf42d..4366677 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -172,16 +172,16 @@ ida.o: Ida.ad.h logo.h # object files OBJS_FBI := \ - fbi.o vt.o fbtools.o fb-gui.o desktop.o \ + fbi.o vt.o fbtools.o drmtools.o fb-gui.o desktop.o \ parseconfig.o fbiconfig.o \ jpegtools.o jpeg/$(JPEG_VER)/transupp.o \ dither.o filter.o op.o OBJS_FBI += $(filter-out wr/%,$(call ac_lib_mkvar,$(fbi_libs),OBJS)) -# jpeg/exif libs -fbi : CFLAGS += $(shell $(PKG_CONFIG) --cflags freetype2 fontconfig) -fbi : LDLIBS += $(shell $(PKG_CONFIG) --libs freetype2 fontconfig) +# font + drm + jpeg/exif libs +fbi : CFLAGS += $(shell $(PKG_CONFIG) --cflags freetype2 fontconfig libdrm) +fbi : LDLIBS += $(shell $(PKG_CONFIG) --libs freetype2 fontconfig libdrm) fbi : LDLIBS += -ljpeg -lexif -lm fbi: $(OBJS_FBI) $(OBJS_READER) |