Initial commit

This commit is contained in:
Shuveb Hussain
2019-08-29 22:46:57 +05:30
parent 1b161dcf28
commit 14e32a6598
3 changed files with 365 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
monitor: monitor.c
gcc -o $@ $<
create_load: create_load.c
gcc -o $@ $< -lpthread
all: monitor create_load
.PHONY: clean
clean:
rm -f monitor create_load