diff options
| author | Teddy Wing | 2018-10-29 02:35:22 +0100 |
|---|---|---|
| committer | Teddy Wing | 2018-10-29 02:35:22 +0100 |
| commit | 1620b731f3c5fd1865caf176f552ee2a9055d081 (patch) | |
| tree | 7a1fc59cecb8a8b18e25707c60adc14092bfd36c | |
| parent | 0742344f0b22ee5174449b400a754323378f484c (diff) | |
| download | dome-key-map-1620b731f3c5fd1865caf176f552ee2a9055d081.tar.bz2 | |
Makefile: Fix error when `make build`ing without a `target` directory
The `make build` target requires the `target/debug/deps` directory to
exists so it can copy the media key simulator library into it.
| -rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -25,4 +25,5 @@ $(DKESS_LIB_DEBUG): $(MAKE) -C lib/dome_key_event_source_simulator $@ $(DKESS_LOCAL_LIB_DEBUG): $(DKESS_LIB_DEBUG) + mkdir -p target/debug/deps cp -a $< $@ |
