Implement ifeq and ifneq
diff --git a/test/cond_syntax.mk b/test/cond_syntax.mk
index e5ba2eb..93d7d37 100644
--- a/test/cond_syntax.mk
+++ b/test/cond_syntax.mk
@@ -56,29 +56,27 @@
 RESULT += FAIL
 endif
 
-# TODO: Support ifeq and ifneq
+ifeq ($(VAR),var)
+RESULT += PASS
+else
+RESULT += FAIL
+endif
+ifneq ($(VAR),var)
+RESULT += FAIL
+else
+RESULT += PASS
+endif
 
-# ifeq ($(VAR),var)
-# RESULT += PASS
-# else
-# RESULT += FAIL
-# endif
-# ifneq ($(VAR),var)
-# RESULT += FAIL
-# else
-# RESULT += PASS
-# endif
-
-# ifeq ($(UNDEFINED),)
-# RESULT += PASS
-# else
-# RESULT += FAIL
-# endif
-# ifeq (,$(UNDEFINED))
-# RESULT += PASS
-# else
-# RESULT += FAIL
-# endif
+ifeq ($(UNDEFINED),)
+RESULT += PASS
+else
+RESULT += FAIL
+endif
+ifeq (,$(UNDEFINED))
+RESULT += PASS
+else
+RESULT += FAIL
+endif
 
 # TODO: Support?
 # ifeq "$(VAR)" "var"