Files
lammps/txt2html/Makefile
2010-10-07 09:58:35 -04:00

14 lines
161 B
Makefile

#
#
CXXFLAGS=-O2 -Wall -W
txt2html: txt2html.cpp
$(CXX) -o $@ $(CXXFLAGS) $^
install: txt2html
cp -pv $^ $(HOME)/bin/
clean:
rm -f txt2html txt2html.o *~