File: GNUmakefile

package info (click to toggle)
firefox 136.0.2-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,441,712 kB
  • sloc: cpp: 7,291,993; javascript: 6,377,247; ansic: 3,659,319; python: 1,376,085; xml: 619,440; asm: 426,610; java: 183,620; sh: 66,319; makefile: 19,394; perl: 12,858; objc: 12,567; yacc: 4,583; cs: 3,846; pascal: 3,352; lex: 1,720; ruby: 1,226; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (14 lines) | stat: -rw-r--r-- 261 bytes parent folder | download | duplicates (32)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# This Makefile is used as a shim to aid people with muscle memory
# so that they can type "make".
#
# This file and all of its targets should not be used by anything important.

all: build

build:
	./mach build

clean:
	./mach clobber

.PHONY: all build clean