Added first obfuscation sample.
[obfuscated-c] / 001 / Makefile
diff --git a/001/Makefile b/001/Makefile
new file mode 100644 (file)
index 0000000..7a39a62
--- /dev/null
@@ -0,0 +1,18 @@
+# Uncomment these lines to use GCC.
+CC      := gcc
+CC_OPTS := -trigraphs -w
+
+# Uncomment these lines to use Clang.
+#CC      := cc
+#CC_OPTS := -trigraphs -Wno-everything
+
+################################################################################
+
+all:
+       @$(CC) $(CC_OPTS) -o main main.c
+
+clean:
+       @rm -f main main.core
+
+run: all
+       @./main