head	1.2;
access;
symbols
	VER_0_3:1.2
	VER_0_2:1.1;
locks; strict;
comment	@# @;


1.2
date	95.03.24.11.43.35;	author coulter;	state Exp;
branches;
next	1.1;

1.1
date	95.02.18.08.36.38;	author coulter;	state Exp;
branches;
next	;


desc
@Makefile for /usr/src/linux/fs/isofs/Utils directory.
@


1.2
log
@Checkin version for 0.3 distribution.
@
text
@#
# Makefile for the logiso utilities
# (C) Copyright 1995 by Michael Coulter.  All rights reserved.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#

.c.s:
	$(CC) $(CFLAGS) -S $<
.c.o:
	$(CC) $(CFLAGS) -c $<
.s.o:
	$(AS) -o $*.o $<

CFLAGS=

CSRC_FILES = 	logiso_get.c		\
		logiso_stop.c		\
		process_lists.c		

OBJS= $(CSRC_FILES:.c=.o)
PROGS = $(CSRC_FILES:.c=)

Default: $(PROGS)

clean: tidy
	-rm -f $(PROGS)

dep:
	$(CPP) -M *.c > .depend

tidy:
	-rm -f $(OBJS)

#
# include a dependency file if one exists
#
ifeq (.depend,$(wildcard .depend))
include .depend
endif
@


1.1
log
@Checkpoint version before fixing /usr/bin install
@
text
@d3 1
@
