asm/Makefile
changeset 66 2b4f786d9073
parent 5 d752cbe8208e
child 166 ecd6492274ad
--- a/asm/Makefile
+++ b/asm/Makefile
@@ -1,9 +1,10 @@
-CC=gcc -g -ggdb
-CFLAGS=-Wall -O2 -Iinclude
-LDFLAGS=
-NASM=nasm -f elf -Iinclude/
-TARGET=stackinfo
-OBJECTS=main.o get_sp.o
+      CC = gcc -g -ggdb
+  CFLAGS = -Wall -O2 -Iinclude
+ LDFLAGS =
+    NASM = nasm -f elf -Iinclude/
+  TARGET = stackinfo
+OBJECTS  = main.o
+OBJECTS += get_sp.o
 
 .SUFFIXES: .c .asm
 
@@ -36,4 +37,3 @@
 uninstall:
 	rm -f ~/bin/decimal
 	rm -f ~/bin/$(TARGET)
-