WTFStopW : a simple stopwatch
x86-64
nasm
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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