File: Makefile

package info (click to toggle)
ruby-columnize 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 236 kB
  • sloc: ruby: 477; makefile: 22
file content (10 lines) | stat: -rw-r--r-- 294 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
# Whatever it is you want to do, it should be handled by the main
# (parent) Makefile. So reissue make from there.
PHONY=check all

#: Default target - the parent's testing or "check" target
all: check

#: Whatever it is you want to do, it should be handled by the parent
%: 
	$(MAKE) -C .. $@