aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: ad786ca91f8bd8010d2dc693d1ad3888b0cf1dcf (plain) (blame)
1
2
3
4
5
6
7
8
CFLAGS:=-O3 -Wall -Wextra -Werror -pedantic
OBJS:=minctest.o

example: example.c $(OBJS)
	$(LINK.c) $^ $(OUTPUT_OPTION) 

clean:
	$(RM) $(OBJS) example