vmware-svga/examples/simple-shaders/Makefile
2009-04-13 07:05:42 +00:00

17 lines
339 B
Makefile

TARGET = simple-shaders.img
APP_SOURCES = main.c
LIB_DIR = ../../lib
include $(LIB_DIR)/Makefile.rules
.PHONY: shaders
shaders: simple_vs.h simple_ps.h
simple_vs.h: simple.fx
wine fxc.exe /T vs_2_0 /E MyVertexShader /Fh simple_vs.h simple.fx
simple_ps.h: simple.fx
wine fxc.exe /T ps_2_0 /E MyPixelShader /Fh simple_ps.h simple.fx