head	1.1;
access;
symbols;
locks
	root:1.1; strict;
comment	@# @;


1.1
date	2002.05.12.11.19.30;	author root;	state Exp;
branches;
next	;


desc
@@


1.1
log
@#
@
text
@#
# Makefile:
#
# Copyright (c) 2000 James McKenzie <james@@fishsoup.dhs.org>.
#
# $Id: Makefile,v 1.2 2002/03/23 17:12:59 root Exp root $
#
# $Log: Makefile,v $
# Revision 1.2  2002/03/23 17:12:59  root
# #
#
# Revision 1.1  2002/03/23 17:12:18  root
# #
#
# Revision 1.6  2000/10/07 18:30:06  root
# #
#
# Revision 1.5  2000/10/06 19:52:19  root
# #
#
# Revision 1.4  2000/09/24 01:46:06  root
# #
#
# Revision 1.3  2000/09/24 01:12:43  root
# #
#
# Revision 1.2  2000/02/21 04:13:34  root
# #
#
# Revision 1.1  2000/02/21 03:34:21  root
# #
#

include ../make.inc

SRCS=oggwrap.c
PROG=oggwrap
OBJS = $(SRCS:.c=.o)  #xplatorm code

all: ${PROG}
protos:

LIB=../libhifimsg/libhifimsg.a

INCLUDES  = -I../shared -I../libhifimsg 
CFLAGS= $(OPT) $(DEFINES) $(INCLUDES)  ${WARN}
CFLAGS=-g
LDFLAGS=-L../libhifimsg  -g

${PROG}: $(OBJS) ${LIB}
	$(CC) ${LDFLAGS} $(CFLAGS) $(OBJS) -o $@@ ${LIBS} ${LIB}

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

clean:
	/bin/rm -rf *.o core a.out *~ *%  ${PROG}

checkin:
	${RCSCI} -l -m# Makefile oggwrap.c

tidy: checkin
	${INDENT} -i2 -ts0 oggwrap.c

depend:
	${MAKEDEPEND} -f- -s "# DO NOT DELETE" -- $(INCLUDES) -- $(SRCS) > .depend

nodepend:
	/bin/rm -f .depend
ifeq (.depend,$(wildcard .depend))
  include .depend
endif

@
