aboutsummaryrefslogtreecommitdiff
path: root/indev/psn00bdbg-mk2/testutil/makefile-linux
blob: 83611d16bca335f9692cd3ce9f59b8d919b0adcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
OFILES	= main.o exec.o prompt.o comms.o serial.o mips_disassembler.o

CFLAGS	= -g -O2

CC		= gcc

all: $(OFILES)
	$(CC) $(CFLAGS) $(OFILES) -o psdbtest
	
%.o: %.c
	$(CC) $(CFLAGS) -c $< -o $@