#!/usr/bin/env omake
#----------------------------------------------------------------------------
#		romfilesɃRs[
#----------------------------------------------------------------------------
#----------------------------------------------------------------------------
#			[U[`
#----------------------------------------------------------------------------
USERS = 
#----------------------------------------------------------------------------
#			^[Qbgt@C
#----------------------------------------------------------------------------
ARC_DIR = $(getenv PROJECT_ROOT)/arc/
ARC_FILE = monsball_gra_battle

#----------------------------------------------------------------------------
#			macro
#----------------------------------------------------------------------------
include $(getenv PROJECT_ROOT)/resource/macro_define
include $(getenv GFL_TOOL_DIR)/lytsys/maketool
include $(getenv GFL_TOOL_DIR)/g3d_tool/g3d_omake_tool

#----------------------------------------------------------------------------
#			rh[
#----------------------------------------------------------------------------
.PHONY:

#----------------------------------------------------------------------------
#    build
#----------------------------------------------------------------------------
build: $(ARC_DIR)/$(ARC_FILE).garc $(ARC_DIR)/$(ARC_FILE).gaix

$(ARC_DIR)/$(ARC_FILE).garc $(ARC_DIR)/$(ARC_FILE).gaix: $(ARC_FILE).garc $(ARC_FILE).gaix
	cp $(ARC_FILE).garc $(ARC_DIR)/$(ARC_FILE).garc
	cp $(ARC_FILE).gaix $(ARC_DIR)/$(ARC_FILE).gaix

clean:
  rm -f $(ARC_DIR)/$(ARC_FILE).garc
  rm -f $(ARC_DIR)/$(ARC_FILE).gaix
  
DefineDefaultRules()

