ref: 832eb032a1ed49e8704e0178eab312a7aa47bcee
dir: /Makefile/
LIB = lib/libTinyGL.a all: $(LIB) SDL_Examples @echo Done! $(LIB): cd src && $(MAKE) && cd .. SDL_Examples: $(LIB) cd SDL_Examples && $(MAKE) && cd .. clean: cd src && $(MAKE) clean && cd .. cd SDL_Examples && $(MAKE) clean && cd .. cd lib && rm -f *.a && cd .. #clean: # rm -f *~ *.o *.a # cd SDL_Examples && $(MAKE) clean && cd ..