summaryrefslogtreecommitdiff
path: root/test/Makefile.OSX
diff options
context:
space:
mode:
Diffstat (limited to 'test/Makefile.OSX')
-rw-r--r--test/Makefile.OSX30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/Makefile.OSX b/test/Makefile.OSX
new file mode 100644
index 0000000..39f589f
--- /dev/null
+++ b/test/Makefile.OSX
@@ -0,0 +1,30 @@
+CC ?= clang
+
+CFLAGS += -std=gnu99 -Wall -DFAKE_STAT $(FAKETIME_COMPILE_CFLAGS)
+
+SRC = timetest.c
+OBJ = ${SRC:.c=.o}
+
+all: timetest test
+
+.c.o:
+ ${CC} -c ${CFLAGS} $<
+
+timetest: ${OBJ}
+ ${CC} -o $@ ${OBJ} ${LDFLAGS}
+
+test: timetest functest
+ @echo
+ @./test_OSX.sh
+
+# run functional tests
+functest:
+ ./testframe.sh functests
+
+clean:
+ @rm -f ${OBJ} timetest
+
+distclean: clean
+ @echo
+
+.PHONY: all test clean distclean