aboutsummaryrefslogtreecommitdiffstats
path: root/src/translate/grt/config/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/translate/grt/config/Makefile')
-rw-r--r--src/translate/grt/config/Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/translate/grt/config/Makefile b/src/translate/grt/config/Makefile
new file mode 100644
index 000000000..7d5f57def
--- /dev/null
+++ b/src/translate/grt/config/Makefile
@@ -0,0 +1,14 @@
+CFLAGS=-Wall -g
+
+#ARCH_OBJS=i386.o linux.o
+ARCH_OBJS=ppc.o linux.o
+
+teststack: teststack.o $(ARCH_OBJS)
+ $(CC) -o $@ $< $(ARCH_OBJS)
+
+ppc.o: ppc.S
+ $(CC) -c -o $@ -g $<
+
+clean:
+ $(RM) -f *.o *~ teststack
+