Skip to content

Instantly share code, notes, and snippets.

@mcs07
Created August 14, 2014 12:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mcs07/348832e0a6640aa21758 to your computer and use it in GitHub Desktop.
Save mcs07/348832e0a6640aa21758 to your computer and use it in GitHub Desktop.
Patch for subset makefile to skip tests
diff --git a/makefile b/makefile
index 7afcae0..533b228 100644
--- a/makefile
+++ b/makefile
@@ -2,13 +2,3 @@ OBJECTS =main.o SCA.o bitvector.o argv.o error.o mem_2.o label_vector.o linkedli
CFLAGS = -O
subset: $(OBJECTS)
$(CC) $(OBJECTS) -o subset -lm
- subset < Test/label_vector.tab
- subset -sim 0.5 < Test/label_vector.tab
- subset -sim 0.5 -log test.log < Test/label_vector.tab
- subset -sim 0.5 < Test/wdi_10.tab
- subset -sim 0.5 < Test/nci_1000.tab > temp.tab
- diff temp.tab Test/nci_1000.subset.tab
- rm temp.tab
-
-
-
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment