File: Makefile

package info (click to toggle)
pdp 1%3A0.14.1%2Bdarcs20180201-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 3,220 kB
  • sloc: ansic: 22,424; asm: 2,088; makefile: 532; perl: 145; sh: 108; cpp: 4
file content (33 lines) | stat: -rw-r--r-- 414 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33

include ../Makefile.config

all: $(PDP_TARGET) pdp.o

common:
	make -C net
	make -C png
	make -C type
	make -C kernel
	make -C image $(PDP_TARGET)
	make -C zl

linux_mmx: common
	make -C mmx

linux_gcc_mmx: common

linux: common

darwin: common

clean:
	rm -f *~
	rm -f *.o
	make -C mmx clean
	make -C net clean
	make -C png clean
	make -C image clean
	make -C type clean
	make -C kernel clean
	make -C zl clean