# Makefile for html-strip utility.
# Copyright (c) 1996 Adam Lloyd.
# Type 'make clean; make; make install' to build & install.

# For gcc
CC= gcc
# For ANSI compilers
#CC= cc

#For Optimization
CFLAGS= -O2
#For debugging
#CFLAGS= -g
# For SCO ODT
#EXTRA_LIBS= -lcrypt_i

RM= /bin/rm -f
#--- You shouldn't have to edit anything else. ---

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

all: hs 

hs: html-strip.c
	$(CC) $(CFLAGS) html-strip.c -o html-strip

clean:
	rm -f html-strip

install:
	cp html-strip /usr/local/bin
	
