tokei/tests/data/Makefile
James Gilles 7849edfa34 Support "filenames" key, mk. 2 (#115)
* Support "filenames" key for Makefile-style languages

* Remove debugging statement

* Add CMake

* Cleaner docs and tests

* Add scons, handle languages with no extensions
2017-06-05 15:28:52 +01:00

25 lines
374 B
Makefile

# 24 lines 11 code 5 comments 8 blanks
## ##
## IMPORTANT COMMENT ##
## ##
all: hello
hello: main.o factorial.o hello.o
g++ main.o factorial.o hello.o -o hello
# main.o is my favorite
main.o: main.cpp
g++ -c main.cpp
factorial.o: factorial.cpp
g++ -c factorial.cpp
hello.o: hello.cpp
g++ -c hello.cpp
clean:
rm *o hello #not counted