File: Makefile

package info (click to toggle)
bingo 0.9.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,884 kB
  • sloc: sh: 258; makefile: 117
file content (11 lines) | stat: -rw-r--r-- 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
include .bingo/Variables.mk

buildable-v2-exists: $(BUILDABLE_V2)
	@echo "checking buildable-v2"
	@test $(BUILDABLE_V2) || (echo "no var" && exit 1)
	@test -f $(BUILDABLE_V2) || (echo "no file" && exit 1)

buildable-withreplace-exists: $(BUILDABLE_WITHREPLACE)
	@echo "checking buildable-with-replace"
	@test $(BUILDABLE_WITHREPLACE) || (echo "no var" && exit 1)
	@test -f $(BUILDABLE_WITHREPLACE) || (echo "no file" && exit 1)