fixed paths

This commit is contained in:
2025-03-12 14:11:06 +03:00
parent 24210c8bfb
commit 684d391bff
792 changed files with 32 additions and 499 deletions

View File

@@ -0,0 +1,17 @@
SHELL = /bin/sh
INSTALL = /bin/cp
SUBDIR = Sage parser fdvm
install:
@for i in ${SUBDIR}; do (cd $$i; \
echo " *** $$i DIRECTORY ***";\
$(MAKE) "MAKE=$(MAKE)" install); done
clean:
@for i in ${SUBDIR}; do (cd $$i; \
echo " *** $$i DIRECTORY ***";\
$(MAKE) "MAKE=$(MAKE)" clean); done