all:
	cd ./src/fl && make;\
	cd ../../src/pmf && make;\
	cd ../../src/awtlay && make;\
	cd ../.. && make install;\
	cd ws && make;\
	echo ---- make all FINISHED ----

clean:
	cd ./src/fl && make clean;\
	cd ../../src/pmf && make clean;\
	cd ../../src/awtlay && make clean;\
	cd ../../ws && make clean;\
	echo ---- make clean FINISHED ----

install:
	cd ./src/fl && make install;\
	cd ../../src/pmf && make install;\
	cd ../../src/awtlay && make install;

uninstall:
	cd ./src/fl && make uninstall;\
	cd ../../src/pmf && make uninstall;\
	cd ../../src/awtlay && make uninstall;

