catppuccin/samples/Makefile
2023-09-22 02:22:30 +02:00

19 lines
No EOL
269 B
Makefile

# Simple Makefile
include make.mk
all: hello ## Doc comment
hello: hello.o world.o
.PHONY: hello
GCC = gcc \
-O2
.o.c:
ifeq ($(FOO),'bar')
$(GCC) -c qwe \
-Wall
else
echo "Hello World"
$(error Architecture $(ARCH) is not supported)
endif