# Makefile for llmnrd # # Copyright (C) 2014-2015 Tobias Klauser VERSION = 0.1-rc1 # llmnrd binary D_P = llmnrd D_OBJS = llmnr.o iface.o socket.o util.o llmnrd.o D_LIBS = -lpthread # llmnr-query binary Q_P = llmnr-query Q_OBJS = util.o llmnr-query.o Q_LIBS = CC = $(CROSS_COMPILE)gcc INSTALL = install CFLAGS ?= -W -Wall -O2 LDFLAGS ?= ifeq ($(shell git rev-parse > /dev/null 2>&1; echo $$?), 0) GIT_VERSION = "(git id $(shell git describe --always))" else GIT_VERSION = endif CFLAGS += -DVERSION_STRING=\"v$(VERSION)\" -DGIT_VERSION=\"$(GIT_VERSION)\" ifeq ($(DEBUG), 1) CFLAGS += -g -DDEBUG endif Q ?= @ CCQ = $(Q)echo " CC $<" && $(CC) LDQ = $(Q)echo " LD $@" && $(CC) prefix ?= /usr/local BINDIR = $(prefix)/bin SBINDIR = $(prefix)/sbin DESTDIR = all: $(D_P) $(Q_P) $(D_P): $(D_OBJS) $(LDQ) $(LDFLAGS) -o $@ $(D_OBJS) $(D_LIBS) $(Q_P): $(Q_OBJS) $(LDQ) $(LDFLAGS) -o $@ $(Q_OBJS) $(Q_LIBS) %.o: %.c %.h $(CCQ) $(CFLAGS) -o $@ -c $< %.o: %.c $(CCQ) $(CFLAGS) -o $@ -c $< install_$(D_P): $(D_P) @echo " INSTALL $(D_P)" @$(INSTALL) -d -m 755 $(DESTDIR)$(SBINDIR) @$(INSTALL) -m 755 $(D_P) $(DESTDIR)$(SBINDIR)/$(D_P) install_$(Q_P): $(Q_P) @echo " INSTALL $(Q_P)" @$(INSTALL) -d -m 755 $(DESTDIR)$(BINDIR) @$(INSTALL) -m 755 $(Q_P) $(DESTDIR)$(BINDIR)/$(Q_P) install: install_$(D_P) install_$(Q_P) clean: @echo " CLEAN" @rm -f $(D_OBJS) $(D_P) @rm -f $(Q_OBJS) $(Q_P) alue='switch'/> net-next plumbingsTobias Klauser
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
108b1f171713 (patch)
tree4bacab1cee05da1781e2479829f70a2eb767b81d
parent52ddb7e9dd735c1a10722c58d3e069af4d3e6df2 (diff)
parent586efded6b8beb932e9a356f351b0c681503358f (diff)
Merge tag 'drm-for-v4.8-zpos' of git://people.freedesktop.org/~airlied/linux
Pull drm zpos property support from Dave Airlie: "This tree was waiting on some media stuff I hadn't had time to get a stable branchpoint off, so I just waited until it was all in your tree first. It's been around a bit on the list and shouldn't affect anything outside adding the generic API and moving some ARM drivers to using it" * tag 'drm-for-v4.8-zpos' of git://people.freedesktop.org/~airlied/linux: drm: rcar: use generic code for managing zpos plane property drm/exynos: use generic code for managing zpos plane property drm: sti: use generic zpos for plane drm: add generic zpos property