implementing reading and writing tasks (#11)

This commit is contained in:
Philipp Moritz
2016-09-18 18:06:42 -07:00
committed by Robert Nishihara
parent c238ae4aa0
commit 37f035dbd0
6 changed files with 86 additions and 18 deletions
+2 -2
View File
@@ -12,8 +12,8 @@ $(BUILD)/db_tests: hiredis test/db_tests.c thirdparty/greatest.h event_loop.c st
$(BUILD)/io_tests: test/io_tests.c thirdparty/greatest.h io.c
$(CC) -o $@ test/io_tests.c io.c $(CFLAGS) -I. -Ithirdparty
$(BUILD)/task_tests: test/task_tests.c task.c io.c common.h
$(CC) -o $@ test/task_tests.c task.c io.c $(CFLAGS) -I. -Ithirdparty
$(BUILD)/task_tests: test/task_tests.c task.h task.c io.h io.c common.h common.h common.c
$(CC) -o $@ test/task_tests.c task.c io.c common.c $(CFLAGS) -I. -Ithirdparty
clean:
rm -r $(BUILD)/*