Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 53 lines (41 sloc) 1013 Bytes
#make admin menu
all: menu
menu:
@bash ./bin_makefile/make_menu.sh
c:
@echo "--> compiler output: "
@echo "------------------------"
@make -C ./sources/ compile
r:
@echo "--> prog output: "
@echo "------------------------"
@make -C ./sources/ run
x:
@echo "--> compiler output: "
@echo "------------------------"
@make -C ./sources/ run-conf
a:
@echo "--> compiler output: "
@echo "------------------------"
@make -C ./sources/ compile
@echo "--> prog output: "
@echo "------------------------"
@make -C ./sources/ run
y:
@echo "--> compiler output: "
@echo "------------------------"
@make -C ./sources/ compile
@echo ""
@echo "--> prog output: "
@echo "------------------------"
@make -C ./sources/ run-conf
C:
@echo "--> compiler output: "
@echo "------------------------"
@make -C ./sources/ compile-anyway
d:
@echo "--> compiler output: "
@echo "------------------------"
@make -C ./sources/ clean
print_%:
@make -C ./sources/ print_$*