Skip to content
Snippets Groups Projects
Commit b45bc291 authored by Marek Vavruša's avatar Marek Vavruša
Browse files

Revert "Also ignore Makefiles and resulting binary"

This reverts commit 17fd0612.
parent 17fd0612
Branches
Tags
No related merge requests found
......@@ -30,11 +30,6 @@
/aclocal.m4
/ltmain.sh
/ylwrap
/Makefile
/daemon/Makefile
/daemon/kresolved
/lib/Makefile
/tests/Makefile
# CMake files
/CMakeCache.txt
......
Makefile 0 → 100644
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