
CC=gcc
PCLU=${CLUHOME}/exe/pclu
PLINK=${CLUHOME}/exe/plink

OBJFILE=native-example.o
CFILE=native-example.c

all: native-example.clu native.spc native.c
	${PCLU} -cf -spec native.spc -comp native-example.clu
	${CC} -g -c -DWIN32 -I${CLUHOME}/include native.c native-example.c
	${CC} -g -o native -L${CLUHOME}/code native.o native-example.o -lpclu_opt -lm

clean:
	rm -f *.o *.exe *~ *.xref