summaryrefslogtreecommitdiff
path: root/testsuite/Makefile
blob: 3a1d2ce200d180c81e9d4930acd2887e79c2a738 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
CC=gcc
CFLAGS=-O2 -mcpu=ev67 #-funroll-loops -pipe

EXES=maxub8.exe maxuw4.exe minub8.exe minuw4.exe addusw4.exe ctlz.exe
        
all: ${EXES}

clean:
	rm -f ${EXES}

rebuild: clean all
remake: rebuild

%.exe: %.c
	${CC} ${CFLAGS} -o $@ $< ${OBJ}