26 lines
531 B
Makefile
Executable File
26 lines
531 B
Makefile
Executable File
# @file $RCSfile: Makefile,v $
|
|
# general description of this module
|
|
# $Id: Makefile,v 1.1.1.1 2013/10/29 11:31:56 test Exp $
|
|
# @author $Author: test $
|
|
# @date $Date: 2013/10/29 11:31:56 $
|
|
# @version $Revision: 1.1.1.1 $
|
|
# @note Editor: Vim 6.1, Gcc 4.0.1, tab=4
|
|
# @note Platform: Linux
|
|
#
|
|
|
|
|
|
include ../../../src/mmog.mk
|
|
|
|
TARGETS = \
|
|
SHELL \
|
|
|
|
all: $(TARGETS)
|
|
|
|
SHELL:
|
|
@./conv.sh $(GAME_COMM_TOOLS)
|
|
@$(MAKE) -f Makefile.real
|
|
|
|
#------------------------------------------------------
|
|
clean:
|
|
@$(MAKE) -f Makefile.real clean
|