Skip to content
Snippets Groups Projects
Makefile 193 B
#master makefile for extrap3d

install: 
	cd lib		; $(MAKE)
	cd main		; $(MAKE) 

clean:
	cd lib 		; $(MAKE) $@
	cd main		; $(MAKE) $@

realclean:
	cd lib 		; $(MAKE) $@
	cd main		; $(MAKE) $@