summaryrefslogtreecommitdiff
path: root/Makefile
blob: bab241f5b2303f0e37fda3915d3be691ffd60407 (plain)
1
2
3
4
5
6
7
8
9
CC = gcc
CFLAGS = -Wall -g

example: example.c functional.c
	$(CC) $(CFLAGS) -o example.o example.c functional.c && ./example.o

.PHONY: format
format:
	clang-format -i -style=file *.{c,h}