all: @echo "targets: clean, console, luciole" clean: rm -f *.ec *.o *.c *.h *.dro find . -type f -executable -exec rm {} + # steps for running a interactive execution in terminal: console: lus2c samples.lus stopwatch -loop gcc stopwatch.c stopwatch_loop.c -o stopwatch ./stopwatch # steps for running a interactive execution in luciole: luciole: lus2dro samples.lus stopwatch luciole ./stopwatch.dro # same, fully detailled luciole2: lus2c samples.lus stopwatch -dro gcc stopwatch.c -I$(LUSTRE_INSTALL)/include -shared -o stopwatch.dro luciole ./stopwatch.dro