WTFStopW : a simple stopwatch
x86-64
nasm
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Makefile 322B

12345678910111213141516171819
  1. NASM=nasm
  2. ASFLAGS=-felf64
  3. LDFLAGS=-s -melf_x86_64
  4. # To build with debugging symbols
  5. #ASFLAGS=-felf64 -F dwarf -g
  6. #LDFLAGS=-melf_x86_64
  7. all: wtfstopw
  8. wtfstopw: wtfstopw.o
  9. ld $(LDFLAGS) wtfstopw.o -o wtfstopw
  10. wtfstopw.o: wtfstopw.asm
  11. $(NASM) $(ASFLAGS) wtfstopw.asm
  12. .PHONY: clean
  13. clean:
  14. -rm -fv wtfstopw wtfstopw.o