aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 231a81df04de5616532bacc67168e0d45cfa632c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC=gcc
CFLAGS=-O3 -Wall -Wextra -Werror -pedantic
DEPS=minctest.h
OBJS=example.o minctest.o

%.o: %.c $(DEPS)
	$(CC) -c -o $@ $< $(CFLAGS)

example: $(OBJS)
	$(CC) -o $@ $^ $(CFLAGS)

clean:
	$(RM) *.o example