aboutsummaryrefslogtreecommitdiff
path: root/Plugins/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Plugins/makefile')
-rw-r--r--Plugins/makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Plugins/makefile b/Plugins/makefile
index dd1b028..f4e6b6c 100644
--- a/Plugins/makefile
+++ b/Plugins/makefile
@@ -15,9 +15,10 @@ all: noize colortv subtract xbend bend gol shuffle green \
FLAGS = /LD /Gd /GD /Ox
-EFFECT = /export:perform_effect
-COPY = /export:perform_copy
-BOTH = /export:perform_effect /export:perform_copy
+# does this suck or what? how to do it better?
+EFFECT = /export:info /export:perform_effect
+COPY = /export:info /export:perform_copy
+BOTH = /export:info /export:perform_effect /export:perform_copy
noize:
cl noize.c $(FLAGS) /link $(BOTH)