From 66c103f7277add98a97d63b663c528729a00bbde Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhani=20Krekel=C3=A4?= Date: Sat, 18 Mar 2023 16:01:12 +0200 Subject: [PATCH] Simplify make size --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 0a6c2ae..d431d3b 100644 --- a/Makefile +++ b/Makefile @@ -30,8 +30,6 @@ clean: distclean: clean size: ponydos.asm - @$(NASM) -fbin -d SIZE -o ponydos_size.bin ponydos.asm - @wc -c ponydos_size.bin - @rm ponydos_size.bin + @$(NASM) -fbin -d SIZE -o /dev/stdout ponydos.asm | wc -c .PHONY: all run clean distclean size