Makefile raw
 1MEX_ASSURE   := c3c unzip
 2SOURCES      := main.c3 config.c3 embed.c3 toolbar.c3
 3RAYLIB       := raylib55
 4
 5include makext.mk
 6
 7help: .help
 8
 9run: .assure # Build and run application
10	c3c compile-run --libdir libs --lib $(RAYLIB) $(SOURCES)
11
12extract-ref: .assure # Extract reference header file
13	unzip -p /home/m/Projects/iceworks-c3/libs/$(RAYLIB).c3l raylib.c3i > ref.c3i
14
15.PHONY: run extract-ref