mirror of
https://github.com/MacDownApp/macdown.git
synced 2026-06-16 12:44:38 +00:00
14 lines
172 B
Makefile
14 lines
172 B
Makefile
ALL: version.h
|
|
|
|
version.h:
|
|
bash ../../Tools/generate_version_header.sh
|
|
|
|
.PHONY: install clean distclean
|
|
|
|
install: ALL
|
|
|
|
clean:
|
|
-rm version.h 2>/dev/null
|
|
|
|
distclean: clean
|