mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-07-28 12:36:47 +00:00
In particular we have to find out if we're running on btrfs filesystem for proper device number mangling. Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Acked-by: Andrew Vagin <avagin@odin.com> Signed-off-by: Pavel Emelyanov <xemul@parallels.com>
40 lines
686 B
Makefile
40 lines
686 B
Makefile
include ../Makefile.inc
|
|
|
|
CFLAGS = -g -O2 -Wall -Werror -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=0
|
|
CFLAGS += $(USERCFLAGS)
|
|
|
|
LIBDIR = .
|
|
LIB = libzdtmtst.a
|
|
|
|
LIBSRC = datagen.c msg.c parseargs.c test.c streamutil.c lock.c ns.c tcp.c fs.c
|
|
LIBOBJ = $(LIBSRC:%.c=%.o)
|
|
LIBDEP = $(LIBSRC:%.c=%.d)
|
|
|
|
DEPEND.c = $(COMPILE.c) -MM -MP
|
|
%.d: %.c
|
|
$(DEPEND.c) $(OUTPUT_OPTION) $<
|
|
|
|
all: $(LIB)
|
|
@true
|
|
install: all
|
|
.PHONY: all install
|
|
|
|
$(LIB): $(LIBOBJ)
|
|
$(Q) ar rv $@ $^
|
|
|
|
clean:
|
|
$(RM) -f $(LIBOBJ) $(LIB) *~
|
|
|
|
cleandep:
|
|
$(RM) -f $(LIBDEP)
|
|
|
|
cleanout:
|
|
@true
|
|
|
|
realclean: clean cleandep
|
|
|
|
.PHONY: clean cleandep cleanout realclean
|
|
|
|
ifeq ($(filter-out no-deps-targets, $(MAKECMDGOALS)),)
|
|
-include $(LIBDEP)
|
|
endif
|