view main/general/Makefile @ 0:6b33357c7561 octave-forge

Initial revision
author pkienzle
date Wed, 10 Oct 2001 19:54:49 +0000
parents
children 153fb900776a
line wrap: on
line source

include ../../Makeconf

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

bitor.oct: bitand.oct
	-$(RM) $@
	$(LN_S) $< $@

bitxor.oct: bitand.oct
	-$(RM) $@
	$(LN_S) $< $@

bitmax.oct: bitand.oct
	-$(RM) $@
	$(LN_S) $< $@

all: $(PROGS)

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