ref: e2e12c60ee18888709eaccaa8fc55b7c9fb3cf45
dir: /Makefile/
LIB = lib/libTinyGL.a all: $(LIB) SDL_Examples @echo Done! $(LIB): cd src && $(MAKE) && cd .. cp src/*.a ./lib/ 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 ..