head	1.2;
access;
symbols;
locks
	chris:1.2; strict;
comment	@# @;


1.2
date	2003.10.19.03.10.52;	author chris;	state Exp;
branches;
next	1.1;

1.1
date	2003.10.19.01.33.03;	author chris;	state Exp;
branches;
next	;


desc
@@


1.2
log
@*** empty log message ***
@
text
@#
# Makefile:
# Build jriderserver
#
# Copyright (c) 2003 Chris Lightfoot. All rights reserved.
# Email: chris@@ex-parrot.com; WWW: http://www.ex-parrot.com/~chris/
#
# $Id: Makefile,v 1.1 2003/10/19 01:33:03 chris Exp chris $
#

SRCS = game.c main.c packets.c peer.c server.c util.c
HDRS = game.h peer.h protocol.h server.h util.h
OBJS = $(SRCS:.c=.o)

CFLAGS = -Wall -g
LDFLAGS = -g
LDLIBS = #-lefence

jriderserver: $(OBJS)
	$(CC) -o jriderserver $(OBJS) $(LDFLAGS) $(LDLIBS)

%.o: %.c Makefile
	$(CC) $(CFLAGS) -c -o $@@ $<

clean: 
	rm -f *.o *~ core core.* jriderserver
@


1.1
log
@Initial revision
@
text
@d8 1
a8 1
# $Id:$
d17 1
d26 1
a26 1
	rm -f *.o *~ core jriderserver
@
