WTFStopW : a simple stopwatch
x86-64
nasm
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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