aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/frame_pointer
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/frame_pointer')
-rw-r--r--test/monniaux/frame_pointer/Makefile13
1 files changed, 8 insertions, 5 deletions
diff --git a/test/monniaux/frame_pointer/Makefile b/test/monniaux/frame_pointer/Makefile
index 15ca87e0..e10d9bd3 100644
--- a/test/monniaux/frame_pointer/Makefile
+++ b/test/monniaux/frame_pointer/Makefile
@@ -1,13 +1,16 @@
whole : a.o b.o
../../../ccomp $+ -o $@
-a.o : a.c
- k1-mbr-gcc -std=c99 -Wall -c $<
+a.s : a.c
+ k1-mbr-gcc -std=c99 -Wall -S $<
-b.o : b.c
- ../../../ccomp -Wall -Wno-c11-extensions -c $<
+b.s : b.c
+ ../../../ccomp -Wall -Wno-c11-extensions -S $<
+
+%.o : %.s
+ k1-mbr-gcc -c $<
clean:
- -rm -f a.o b.o whole
+ -rm -f a.o b.o a.s b.s whole
.PHONY: clean