diff options
author | Juan J. Martinez <jjm@usebox.net> | 2024-05-27 17:09:25 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2024-05-27 17:09:25 +0100 |
commit | bc9281a3bb7a85c826d3a49220bc13134478477c (patch) | |
tree | 4e10698fe533dd54db85bb38087ae9158b1a531d /tools/hex2bin-2.0 | |
parent | 4b56dc74819f7fc85099ffa49e772ce821592708 (diff) | |
download | ubox-msx-lib-bc9281a3bb7a85c826d3a49220bc13134478477c.tar.gz ubox-msx-lib-bc9281a3bb7a85c826d3a49220bc13134478477c.zip |
Properly create bin directory
bin subdirectory is not properly created before running make -C tools.
Co-authored-by: Pedro de Medeiros <pedro.medeiros@gmail.com>
Diffstat (limited to 'tools/hex2bin-2.0')
-rwxr-xr-x | tools/hex2bin-2.0/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/hex2bin-2.0/Makefile b/tools/hex2bin-2.0/Makefile index 6c87000..d361146 100755 --- a/tools/hex2bin-2.0/Makefile +++ b/tools/hex2bin-2.0/Makefile @@ -35,7 +35,7 @@ $(TGTDIR)/hex2bin.1: $(SRCDIR)/hex2bin.pod $(TGTDIR)/hex2bin: $(B_OBJFILES) gcc $(CPFLAGS) -o $(TGTDIR)/hex2bin $(B_OBJFILES) - cp bin/$(TARGET) ../../bin + cp bin/$(TARGET) -t ../../bin $(TGTDIR)/mot2bin: $(M_OBJFILES) gcc $(CPFLAGS) -o $(TGTDIR)/mot2bin $(M_OBJFILES) |