From 694155dda64f2aa7c89f6fa510ea458e18c778fd Mon Sep 17 00:00:00 2001 From: Ian C Date: Mon, 22 Dec 2003 23:31:04 +0000 Subject: Removed EMMA - now part of Z80 library --- src/Makefile | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'src/Makefile') diff --git a/src/Makefile b/src/Makefile index ba51a7e..0a924d7 100644 --- a/src/Makefile +++ b/src/Makefile @@ -18,7 +18,7 @@ # # ------------------------------------------------------------------------- # -# $Id: Makefile,v 1.5 2003-12-22 00:01:31 ianc Exp $ +# $Id: Makefile,v 1.6 2003-12-22 23:31:04 ianc Exp $ # @@ -48,8 +48,6 @@ OBJECTS = main.o \ memmenu.o \ exit.o -EMMA = emma - CFLAGS += -Iz80 `sdl-config --cflags` LIBS = $(Z80LIB) `sdl-config --libs` @@ -58,18 +56,15 @@ LIBS = $(Z80LIB) `sdl-config --libs` $(TARGET): $(OBJECTS) $(Z80LIB) $(CC) $(CFLAGS) -o $(TARGET) $(OBJECTS) $(LIBS) -$(EMMA): $(EMMA).o $(Z80LIB) - $(CC) $(CFLAGS) -o $(EMMA) $(EMMA).o $(Z80LIB) - $(Z80LIB): z80/*.[ch] cd z80; make ; cd .. clean: - rm -f $(TARGET) $(EMMA) $(EMMA).o $(OBJECTS) core + rm -f $(TARGET) $(OBJECTS) core cd z80; make clean; cd .. depend: - makedepend -- $(CFLAGS) -- $(SOURCE) $(EMMA).c + makedepend -- $(CFLAGS) -- $(SOURCE) if test -e Makefile ; then rm -f Makefile.bak ; fi cd z80; make depend ; cd .. -- cgit v1.2.3