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.
ck/regressions/ck_cc/validate/Makefile

18 lines
276 B

.PHONY: check clean distribution
OBJECTS=ck_cc
all: $(OBJECTS)
ck_cc: ck_cc.c ../../../include/ck_cc.h
$(CC) $(CFLAGS) -g2 -o ck_cc ck_cc.c
check: all
./ck_cc
clean:
rm -rf *~ *.o $(OBJECTS) *.dSYM *.exe
include ../../../build/regressions.build
CFLAGS+=-D_GNU_SOURCE