catppuccin/samples/Makefile

19 lines
269 B
Makefile
Raw Permalink Normal View History

2023-09-22 00:22:30 +00:00
# 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