File: Makefile

package info (click to toggle)
freespeech 1.0m-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,640 kB
  • sloc: ansic: 5,315; perl: 202; makefile: 114
file content (17 lines) | stat: -rw-r--r-- 282 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# General Makefile for Debian packaging system.

DESTDIR =

all:
	$(MAKE) -C src all
	$(MAKE) -C lib all

install:
	$(MAKE) -C src install prefix=$(DESTDIR)/usr
	$(MAKE) -C lib install prefix=$(DESTDIR)/usr

clean:
	$(MAKE) -C src clean
	$(MAKE) -C lib clean

.PHONY: clean install