File: Makefile

package info (click to toggle)
pcb-rnd 3.1.7b-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,108 kB
  • sloc: ansic: 213,400; yacc: 6,241; sh: 4,698; awk: 3,016; makefile: 2,254; lex: 1,166; python: 519; xml: 261; lisp: 154; tcl: 67; perl: 34; javascript: 6; ruby: 5
file content (37 lines) | stat: -rw-r--r-- 1,533 bytes parent folder | download | duplicates (3)
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
34
35
36
37
ROOT=../..
DEVDIR=$(DOCDIR)/developer

all:

install_all:
	$(SCCBOX) mkdir -p $(DEVDIR)/alien_formats $(DEVDIR)/alien_formats/io_altium $(DEVDIR)/ddrc $(DEVDIR)/mods3 $(DEVDIR)/API $(DEVDIR)/export_openems $(DEVDIR)/lihata_format $(DEVDIR)/lihata_format/examples $(DEVDIR)/plugin $(DEVDIR)/plugin/template $(DEVDIR)/plugin/template_fungw $(DEVDIR)/plugin/template_pup
	$(SCCBOX) $(HOW) *.txt *.html *.svg $(DEVDIR)/
	$(SCCBOX) $(HOW) alien_formats/*.txt $(DEVDIR)/alien_formats/
	$(SCCBOX) $(HOW) alien_formats/io_altium/*.txt $(DEVDIR)/alien_formats/io_altium/
	$(SCCBOX) $(HOW) alien_formats/io_kicad/*.txt $(DEVDIR)/alien_formats/io_kicad/
	$(SCCBOX) $(HOW) ddrc/*.txt $(DEVDIR)/ddrc/
	$(SCCBOX) $(HOW) mods3/*.html mods3/*.png $(DEVDIR)/mods3/
	$(SCCBOX) $(HOW) API/*.txt $(DEVDIR)/API/
	$(SCCBOX) $(HOW) export_openems/*.txt $(DEVDIR)/export_openems/
	$(SCCBOX) $(HOW) lihata_format/*.html lihata_format/*.txt lihata_format/*.svg $(DEVDIR)/lihata_format/
	$(SCCBOX) $(HOW) lihata_format/examples/*.lht $(DEVDIR)/lihata_format/examples/
	$(SCCBOX) $(HOW) plugin/*.html plugin/*.h plugin/*.conf $(DEVDIR)/plugin/
	$(SCCBOX) $(HOW) plugin/template/* $(DEVDIR)/plugin/template/
	$(SCCBOX) $(HOW) plugin/template_fungw/* $(DEVDIR)/plugin/template_fungw/
	$(SCCBOX) $(HOW) plugin/template_pup/* $(DEVDIR)/plugin/template_pup/

install:
	$(MAKE) install_all HOW="install -f -d"

linstall:
	$(MAKE) install_all HOW="install -f -l -d"

uninstall:
	$(MAKE) install_all HOW="install -u"

clean:

distclean:


include $(ROOT)/Makefile.conf