소스 검색

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