summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/Makefile b/tests/Makefile
new file mode 100644
index 0000000..af20182
--- /dev/null
+++ b/tests/Makefile
@@ -0,0 +1,23 @@
+CC := gcc
+CFLAGS := -std=c99 -m32 -ffreestanding -O0 -g -Wall -Werror
+INCLUDES = -I../src
+LD := ld
+
+all: test
+
+test_strlcpy: test_strlcpy.o
+
+test_strlcpy: test_strlcpy.o ../src/string.o
+ $(CC) -o test_strlcpy test_strlcpy.o ../src/string.o
+
+test_strlcpy.o: test_strlcpy.c
+ $(CC) $(CFLAGS) $(INCLUDES) -c -o test_strlcpy.o test_strlcpy.c
+
+../src/string.o: ../src/string.c
+ $(CC) $(CFLAGS) -c -o ../src/string.o ../src/string.c
+
+test: test_strlcpy
+ ./test_strlcpy
+
+clean:
+ -rm -f test_strlcpy *.o