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/rasm/Makefile | |
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/rasm/Makefile')
-rw-r--r-- | tools/rasm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/rasm/Makefile b/tools/rasm/Makefile index 25d6b31..da9de8c 100644 --- a/tools/rasm/Makefile +++ b/tools/rasm/Makefile @@ -48,7 +48,7 @@ ZX0_OBJ+=$(SRC_ZX0DIR)/memory.o .PHONY: prod third debug clean default: prod - cp $(EXEC) ../../bin + cp $(EXEC) -t ../../bin rm -f $(EXEC) *.o third: |