aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2018-11-05 01:41:34 +0100
committerTeddy Wing2018-11-05 01:45:30 +0100
commit44119ce51728254e0a925f63ac87029043f7321f (patch)
tree57d8bf483762f1d19b53758c5135c9b8c0f9ad40
parent29bc22d4b4881acb2eb6534af1d260f52bac7bdb (diff)
downloaddome-key-map-44119ce51728254e0a925f63ac87029043f7321f.tar.bz2
Makefile: Remove `includer` and `moder` targets
Don't need these programs any more, so the build recipes for them don't really make sense to keep. Also remove the `clean` target since it only relates to `includer` and `moder`.
-rw-r--r--Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index d59e491..c8cdb78 100644
--- a/Makefile
+++ b/Makefile
@@ -15,16 +15,6 @@ build: $(LIB)
$(LIB): $(SOURCE_FILES) $(DKESS_LOCAL_LIB_DEBUG)
cargo build
-includer: clean $(LIB)
- gcc -o $@ includer.c $(LIB)
-
-moder: moder.c $(LIB)
- gcc -g -Wall -Wextra -Werror -o $@ $< $(LIB)
-
-.PHONY: clean
-clean:
- rm -f includer moder
-
$(DKESS_LIB_DEBUG):
$(MAKE) -C lib/dome_key_event_source_simulator $@