mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-09 04:22:04 -04:00
15 lines
235 B
Makefile
15 lines
235 B
Makefile
.PHONY: default clean
|
|
|
|
EXEC_NAME=loop
|
|
|
|
default: link
|
|
|
|
include ../../cpp.mk
|
|
|
|
$(eval $(call program_compile_cpp_folder,src))
|
|
$(eval $(call program_link_executable,$(EXEC_NAME)))
|
|
|
|
clean:
|
|
@ echo -e "Remove compiled files"
|
|
@ rm -rf debug
|