summaryrefslogtreecommitdiff
path: root/build/Makefile.kernel
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-04-04 20:19:12 +0000
committerDana Jansens <danakj@orodu.net>2003-04-04 20:19:12 +0000
commit68ff2eb3d2d7874e780000143cbee9a8e7c2e57f (patch)
treeeed6077d7eedb92fac0c8c3c51c56577be15f82e /build/Makefile.kernel
parentc8ff993e08e73f030a2efdb4f01c5f65464555e7 (diff)
add the keyboard plugin into the build systems
keyboard bindings are parsed from the rc file
Diffstat (limited to 'build/Makefile.kernel')
-rw-r--r--build/Makefile.kernel6
1 files changed, 5 insertions, 1 deletions
diff --git a/build/Makefile.kernel b/build/Makefile.kernel
index 69c8ac69..48602603 100644
--- a/build/Makefile.kernel
+++ b/build/Makefile.kernel
@@ -25,6 +25,10 @@ all: $(target)
$(target): $(objects) render/librender.a
$(LINK) -o $@ $^ $(LIBS) $(LDFLAGS)
+# kill the implicit .c.y rule
+$(srcdir)/%.c: $(srcdir)/%.y
+ @
+
$(dir)/%.o: $(srcdir)/%.c $(depdir)/%.d
$(COMPILE) -c -o $@ $<
@@ -58,4 +62,4 @@ distclean:
-include $(deps)
-.PHONY: kernel-install kernel-uninstall kernel-clean
+.PHONY: all install uninstall clean distclean