## this makefile was provided by
## Paul Kienzle
## thanks.
## And modified by him for use in matcompat

TOP=../..
include $(TOP)/Makeconf

%.oct: %.cc ; $(MKOCTFILE) -DHAVE_OCTAVE_$(ver) $<

PROGS = bitand.oct bitor.oct bitxor.oct bitmax.oct

all: $(PROGS)

bitor.oct:
	ln -sf bitand.oct bitor.oct

bitxor.oct:
	ln -sf bitand.oct bitxor.oct

bitmax.oct:
	ln -sf bitand.oct bitmax.oct

clean: 
	$(RM) *.o $(PROGS) octave-core    
