Index: main/Makefile
===================================================================
--- main/Makefile	(revision main,4)
+++ main/Makefile	(revision main,5)
@@ -1,3 +1,3 @@
-all: menu2.so form2.so
+all: menu2.so form2.so cdk_wrapper.so
 
 menu2.so: LIBS := -lmenu
@@ -5,5 +5,10 @@
 form2.so: LIBS := -lform
 
+cdk_wrapper.so: LIBS := -lcdk
+
 %.so: %.c
 	rm -f $@
 	gcc -shared -fPIC -o $@ $< $(LIBS) -Wall -pedantic
+
+clean:
+	rm -f *.so *.fasl
