fixed paths

This commit is contained in:
2025-03-12 14:22:11 +03:00
committed by Dudarenko
parent 06cfe83666
commit 86ab34e7f3
776 changed files with 4561 additions and 4548 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