diff options
author | sin <sin@2f30.org> | 2014-09-22 11:29:26 +0100 |
---|---|---|
committer | sin <sin@2f30.org> | 2014-09-22 11:29:26 +0100 |
commit | 7f95d74a1e162eb60d8f29f38c513f4d53ac7721 (patch) | |
tree | 2cdff4d1cd2b6ea40559508be67a1c5a97d8afb8 | |
parent | e6e924374d49aa14e94a28d9b64a9f63bae2426d (diff) |
Generate config.h
-rw-r--r-- | Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -3,7 +3,7 @@ include config.mk .POSIX: .SUFFIXES: .c .o -HDR = arg.h readpassphrase.h +HDR = arg.h config.h readpassphrase.h LIB = \ readpassphrase.o SRC = \ @@ -20,7 +20,11 @@ binlib: util.a bin: $(BIN) -$(OBJ): readpassphrase.h config.mk +$(OBJ): $(HDR) config.mk + +config.h: + @echo creating $@ from config.def.h + @cp config.def.h $@ .o: @echo LD $@ |