aboutsummaryrefslogtreecommitdiffstats
path: root/src/translate/grt/config/Makefile
blob: 7d5f57defb99d16e0c91e83b6c226a04e4e4e55a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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