Skip to content
Snippets Groups Projects
Commit 17fd0612 authored by Ondřej Surý's avatar Ondřej Surý
Browse files

Also ignore Makefiles and resulting binary

parent 763b7a3f
Branches
Tags
No related merge requests found
......@@ -30,6 +30,11 @@
/aclocal.m4
/ltmain.sh
/ylwrap
/Makefile
/daemon/Makefile
/daemon/kresolved
/lib/Makefile
/tests/Makefile
# CMake files
/CMakeCache.txt
......
include config.mk
include platform.mk
# Targets
all: info libkresolve kresolved
install: libkresolve-install kresolved-install
check: all tests-check
clean: libkresolve-clean kresolved-clean tests-clean
.PHONY: all install check clean
# Options
ifdef COVERAGE
CFLAGS += --coverage
endif
# Dependencies
$(eval $(call find_lib,libknot))
$(eval $(call find_lib,libuv))
$(eval $(call find_lib,cmocka))
$(eval $(call find_python))
CFLAGS += $(libknot_CFLAGS) $(libuv_CFLAGS) $(cmocka_CFLAGS) $(python_CFLAGS)
# Sub-targets
include help.mk
include lib/libkresolve.mk
include daemon/kresolved.mk
include tests/tests.mk
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment