File: Makefile

package info (click to toggle)
xschem 3.4.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 31,452 kB
  • sloc: ansic: 54,589; tcl: 7,786; awk: 5,802; sh: 3,108; yacc: 512; lex: 311; makefile: 282
file content (37 lines) | stat: -rw-r--r-- 833 bytes parent folder | download
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
all: FORCE
	cd src && $(MAKE)
	cd xschem_library && $(MAKE)
	cd doc && $(MAKE)
	cd src/utile && $(MAKE)

clean: FORCE
	cd src && $(MAKE) clean
	cd xschem_library && $(MAKE) clean
	cd doc && $(MAKE) clean
	cd src/utile && $(MAKE) clean

distclean: FORCE
	$(MAKE) clean ; true
	cd src && $(MAKE) distclean
	cd xschem_library && $(MAKE) distclean
	cd doc && $(MAKE) distclean
	cd src/utile && $(MAKE) distclean
	rm -f Makefile.conf config.h src/Makefile
	cd scconfig && make distclean

install: FORCE
	cd src && $(MAKE) install
	cd xschem_library && $(MAKE) install
	cd doc && $(MAKE) install
	cd src/utile && $(MAKE) install

install_pdf: FORCE
	cd doc && $(MAKE) install_pdf

uninstall: FORCE
	cd src && $(MAKE) uninstall
	cd xschem_library && $(MAKE) uninstall
	cd doc && $(MAKE) uninstall
	cd src/utile && $(MAKE) uninstall

FORCE: