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


1.4
date	2005.10.26.05.41.31;	author phi;	state dead;
branches;
next	1.3;

1.3
date	2005.06.30.19.53.52;	author phi;	state Exp;
branches;
next	1.2;

1.2
date	2005.06.14.04.51.45;	author phi;	state Exp;
branches;
next	1.1;

1.1
date	2005.06.14.00.37.19;	author phi;	state Exp;
branches;
next	;


desc
@@


1.4
log
@Move App files out of subdirectory.
@
text
@include ../Makefile.include

OBJ = \
      	App.o \
	Main.o \

all: $(OBJ)

clean:
	rm -rf *.o
@


1.3
log
@Refactor object file generation.
@
text
@@


1.2
log
@Refactor common Makefile code into common Makefile.include
@
text
@a8 6
App.o: App.cc
	$(CPP) $(CPPFLAGS) -c $< -o $@@

Main.o: Main.cc
	$(CPP) $(CPPFLAGS) -c $< -o $@@

d10 1
a10 1
	rm -rf $(OBJ)
@


1.1
log
@Refactor common app code into App classes
new Hello, World app for rally odo
@
text
@d1 1
a1 12
CPP = m68k-palmos-g++

INCLUDES = \
	-I /usr/include/sdk-3.5 \
	-I /usr/include/sdk-3.5/Core \
	-I /usr/include/sdk-3.5/Core/Hardware \
	-I /usr/include/sdk-3.5/Core/System \
	-I /usr/include/sdk-3.5/Core/UI \
	-I /usr/include/sdk-3.5/Dynamic \
	-I /usr/include/sdk-3.5/Libraries \

CPPFLAGS = -g -O2 -Wall $(INCLUDES)
a6 1
default: all
@

