File: Makefile

package info (click to toggle)
ruby-columnize 0.9.0-1.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 232 kB
  • sloc: ruby: 477; makefile: 22
file content (11 lines) | stat: -rw-r--r-- 303 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
# 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
	true

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