shithub: tinygl

ref: 07eeeb88a263f338c4df4bd991b562d801b64f99
dir: /Makefile/

View raw version

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 ..
	cd Raw_Demos && $(MAKE) && cd ..
clean:
	cd src && $(MAKE) clean && cd ..
	cd SDL_Examples && $(MAKE) clean && cd ..
	cd Raw_Demos && $(MAKE) clean && cd ..
	cd lib && rm -f *.a && cd ..
#clean:
#	rm -f *~ *.o *.a
#	cd SDL_Examples && $(MAKE) clean && cd ..