head	1.5;
access;
symbols
	fontscreen:1.4
	good:1.4;
locks; strict;
comment	@# @;


1.5
date	94.12.05.03.43.52;	author jsshephe;	state Exp;
branches;
next	;


desc
@original
split up makefile to compile for different processors
@


1.5
log
@Made each CPU version have their own .o file.
@
text
@#Makefile generated by makemake (C)1994 by Jeff Shepherd
# $Id: Makefile.show,v 1.4 1994/12/04 04:54:35 jsshephe Exp $
# $Revision: 1.4 $
# $Log: Makefile.show,v $
# Revision 1.4	1994/12/04  04:54:35  jsshephe
# Changed CFLAGS so I could bypass the primary makefile.
#
# Revision 1.3	1994/08/19  19:40:33  jsshephe
# Changed loadsave.o to misc.o to conform with name change
#
# Revision 1.2	1994/08/18  23:32:59  jsshephe
# nothing special
#

CC = gcc
CFLAGS = -msmall-code -fstrict-prototypes -Wall -Ddebug
LFLAGS = -s -noixemul
020 =
ffp =
OBJ1 = show.o$(020)$(ffp) misc.o$(020)$(ffp)
OBJ2 = showprefs.o$(020)$(ffp) prefs_actions.o$(020)$(ffp) misc.o$(020)$(ffp)
OUTPUT2 = showprefs$(020)$(ffp)
OUTPUT = show$(020)

.SUFFIXES: .c .h .o$(020)$(ffp)
.c.o$(020)$(ffp):
	$(CC) $(CFLAGS) -c $< -o $@@

all: showprefs.h $(OUTPUT) $(OUTPUT2)

$(OUTPUT) : $(OBJ1)
	$(CC) -o $@@ $(OBJ1) $(LFLAGS)

$(OUTPUT2) : $(OBJ2)
	$(CC) -o $@@ $(OBJ2) $(LFLAGS)

showprefs.o$(020)$(ffp) : showprefs.h
prefs_actions.o$(020)$(ffp) : showprefs.h
loadsave.o$(020)($ffp) : showprefs.h

@
