浏览代码

added Makefile for C programs

Stan Gurtler 3 年之前
父节点
当前提交
e33ac5f83c
共有 1 个文件被更改,包括 10 次插入0 次删除
  1. 10 0
      dhtpir_simulation/Makefile

+ 10 - 0
dhtpir_simulation/Makefile

@@ -0,0 +1,10 @@
+all: options_setup run_tests
+
+options_setup: options_setup.c 
+	gcc -o $@ $<
+
+run_tests: run_tests.c 
+	gcc -pthread -o $@ $<
+
+clean:
+	-rm options_setup run_tests