################################################################################
#
#
#

CC = gcc
SHARED = gcc

#
################################################################################
#
#
#

OBJ_PLUGIN = plugin_hle_libapi.o

################################################################################
#
#
#

all: plugin_hle_libapi.dll

plugin_hle_libapi.dll: $(OBJ_PLUGIN)
	dllwrap --def ../def/plugin.Windows.def -o $@ $(OBJ_PLUGIN)

%.o: %.c
	gcc -c -I../include -o $@ $<

clean:
	rm -f plugin_hle_libapi.dll
	rm -f $(OBJ_PLUGIN)

#
################################################################################