mirror of
https://github.com/darlinghq/ctest.git
synced 2024-12-13 07:06:01 +00:00
19 lines
297 B
Makefile
19 lines
297 B
Makefile
UNAME=$(shell uname)
|
|
|
|
CCFLAGS=-Wall -Wextra -Wconversion -Wredundant-decls -Wshadow -Wno-unused-parameter -O3
|
|
CC=clang
|
|
|
|
all: test
|
|
|
|
remake: clean all
|
|
|
|
%.o: %.c ctest.h
|
|
$(CC) $(CCFLAGS) -c -o $@ $<
|
|
|
|
test: main.o ctest.h mytests.o
|
|
$(CC) $(LDFLAGS) main.o mytests.o -o test
|
|
|
|
clean:
|
|
rm -f test *.o
|
|
|