You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 rivejä
343 B
20 rivejä
343 B
CFLAGS = -Wall -Wextra -Werror -pedantic-errors -std=c99 -g |
|
CPPFLAGS = -D_POSIX_C_SOURCE=200809L |
|
CC = gcc |
|
LDLIBS = -lm |
|
|
|
.PHONY: all clean clean-all |
|
|
|
all: main |
|
|
|
main: main.o benchmark-data.o |
|
|
|
benchmark-data.o: benchmark-data.c benchmark-data.h |
|
|
|
main.o: main.c benchmark-data.h |
|
|
|
clean: |
|
-@rm main.o benchmark-data.o |
|
|
|
clean-all: clean |
|
-@rm main
|
|
|