changeset 48:010ae96a3e4e

add bitVector
author Masataka Kohagura <kohagura@cr.ie.u-ryukyu.ac.jp>
date Mon, 25 May 2015 14:53:47 +0900
parents 3d59066744d8
children f76fe618d5a7
files c/bitVector/Makefile c/bitVector/main.cc
diffstat 2 files changed, 16 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/c/bitVector/Makefile	Mon May 25 14:53:47 2015 +0900
@@ -0,0 +1,10 @@
+TARGET= bitVector
+OPTION= -Wall -O0 -g
+
+$(TARGET):main.cc
+	clang $(OPTION) -o $(TARGET) main.cc
+
+clean:
+	rm -f $(TARGET)
+	rm -r $(TARGET).dSYM
+	rm -f *~ \#*
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/c/bitVector/main.cc	Mon May 25 14:53:47 2015 +0900
@@ -0,0 +1,6 @@
+#include <stdio.h>
+
+int main(int argc, char *argv[]){
+
+    return 0;
+}