diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-25 11:59:07 -0700 |
---|---|---|
committer | Quentin Carbonneaux <quentin@c9x.me> | 2019-04-26 14:12:26 +0200 |
commit | 2a60575f53d831f36eb93658b40fcd2f5ab3c82f (patch) | |
tree | 10a5889e5ddecd2456f9881cf48e3d49baaee5ee | |
parent | 659245773a7cad1954d975ea2e262c8a0c804689 (diff) | |
download | roux-2a60575f53d831f36eb93658b40fcd2f5ab3c82f.tar.gz |
Fix config.h dependency when OBJDIR != obj
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index b91e498..1a0074f 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ $(OBJDIR)/timestamp: $(OBJ): all.h ops.h $(AMD64OBJ): amd64/all.h $(ARM64OBJ): arm64/all.h -obj/main.o: config.h +$(OBJDIR)/main.o: config.h config.h: @case `uname` in \ |