Makefile 573 Bytes
############################
# block variable definitions

BLOCK    =  sudp

SRCDIR     = $(RCP_ROOT)/su/src
CMPSDIR    = $(RCP_ROOT)/su/compass
SCHEMATIC = sudpschem.la
SCRIPT    = sudp.dprscr
ORDER     = sudpschem_order.txt


$(BLOCK).mcp: $(SCRIPT) $(SCHEMATIC) $(ORDER)


###################
# get the script and order files

$(SCRIPT): $(CMPSDIR)/$(SCRIPT)
	-rm $(SCRIPT)
	ln -s $(CMPSDIR)/$(SCRIPT) .

$(ORDER): $(CMPSDIR)/$(ORDER)
	-rm $(ORDER)
	ln -s $(CMPSDIR)/$(ORDER) .

###################
# standard makefile

include /ecad/reality/include/Makefile.dpr.incl