#CXX=gcc-4.0
CXX=g++
LD=g++
CFLAGS=-Wall -g
CXXFLAGS=-Wall -g
LDFLAGS=-lstdc++

OBJETS=prehtml.o shell.o fichier.o decode.o \
	imbrique.o fonction.o generate.o

EXE=prehtml

all : $(EXE)

prehtml : $(OBJETS)
	$(CXX) $(LDFLAGS) $(OBJETS) -o $(EXE)

$(OBJETS): prehtml.h

clean :
	-rm *.o *~

install : all
	su -c "cp prehtml /usr/local/bin"

