head	1.1;
access;
symbols;
locks; strict;
comment	@# @;


1.1
date	2007.08.01.05.49.24;	author imatake;	state Exp;
branches;
next	;


desc
@@


1.1
log
@o^B
@
text
@
CPPFILES	= main.cpp
HPPFILES	= 

OBJS		= $(CPPFILES:.cpp=.o)

TARGET		= dmgdasm.exe

.PHONY:		all

all:		depend $(TARGET)

depend:		$(CPPFILES) $(HPPFILES)
	g++ -MM $(CPPFILES) > depend

$(TARGET):	$(OBJS)
	g++ -o $@@ $(OBJS)

.cpp.o:
	g++ -c $<

-include depend
@
