2005-05-17 22:05:45 +00:00
|
|
|
|
2007-10-05 09:59:27 +00:00
|
|
|
all: ezscript hud irc
|
2005-05-17 22:05:45 +00:00
|
|
|
|
2007-10-05 09:59:27 +00:00
|
|
|
clean: ezscript-clean hud-clean irc-clean
|
|
|
|
|
|
|
|
.PHONY: all ezscript hud irc
|
2005-05-17 22:05:45 +00:00
|
|
|
|
|
|
|
help:
|
|
|
|
@-echo make a subdirectory
|
|
|
|
|
2007-10-05 09:59:27 +00:00
|
|
|
ezscript:
|
|
|
|
$(MAKE) -C ezscript
|
|
|
|
|
|
|
|
ezscript-clean:
|
|
|
|
$(MAKE) clean -C ezscript
|
|
|
|
|
2005-05-17 22:05:45 +00:00
|
|
|
hud:
|
|
|
|
$(MAKE) -C hud
|
|
|
|
|
2007-10-05 09:59:27 +00:00
|
|
|
hud-clean:
|
|
|
|
$(MAKE) clean -C hud
|
|
|
|
|
2005-05-17 22:05:45 +00:00
|
|
|
irc:
|
2005-06-15 15:04:34 +00:00
|
|
|
$(MAKE) -C irc
|
2005-05-17 22:05:45 +00:00
|
|
|
|
2007-10-05 09:59:27 +00:00
|
|
|
irc-clean:
|
|
|
|
$(MAKE) clean -C irc
|
|
|
|
|
2013-05-03 04:29:36 +00:00
|
|
|
native:
|
|
|
|
@echo outdir = $(OUT_DIR)
|
|
|
|
$(CC) -o $(OUT_DIR)/fteplug_avplugx86.dll -shared -Iavplug -Iavplug/libavformat -Iavplug/libavcodec -Iavplug/libavutil -Iavplug/libswscale -Iavplug/msvc_lib avplug/avencode.c avplug/avdecode.c plugin.def plugin.c -Lavplug/lib32 -lavcodec -lavformat -lavutil -lswscale -lwinmm
|
|
|
|
$(CC) $(BASE_CFLAGS) -DFTEPLUGIN -o $(OUT_DIR)/fteplug_mpqx86.dll -shared -Impq mpq/fs_mpq.c mpq/blast.c plugin.def plugin.c qvm_api.c -Lavplug/lib32 -L../engine/libs/mingw-libs -lzlib
|