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


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

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

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

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


desc
@@


1.4
log
@Refactor object file generation.
@
text
@include ../Makefile.include
# this lives in a directory all on its own because it's a third-party project.

OBJ = \
        EHF.o \

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

all: $(OBJ)

clean:
	rm -rf *.o
@


1.3
log
@Refactor common Makefile code into common Makefile.include
@
text
@d1 1
a2 1
include ../Makefile.include
d7 3
a11 3
EHF.o:  EHF.cpp
	$(CPP) $(CPPFLAGS) -c $< -o $@@

d13 1
a13 1
	rm -rf $(OBJ)
@


1.2
log
@Compile clean under -Wall.
@
text
@d2 1
a2 13

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
@


1.1
log
@initial import of EHF event-handler framework
@
text
@d1 1
a1 3
# this lives in a directory all on its own because:
# - it's a third-party project.
# - it includes libraries that don't compile clean under -WAll.
d14 1
a14 1
CPPFLAGS = -g -O2 $(INCLUDES)
@

