File: linux.mak

package info (click to toggle)
svn-workbench 1.5.0-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 2,400 kB
  • ctags: 1,585
  • sloc: python: 12,163; sh: 74; makefile: 46; ansic: 9
file content (26 lines) | stat: -rw-r--r-- 650 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
build: all kit

all: workbench

workbench: meinc_installer
	cd ../Source && $(MAKE) -f linux.mak build_bin

# build the launcher
# but get ride of the config.dat that is created as it
# prevent correct creation of a usable config.dat
meinc_installer:
	cd ../Import/MEINC_Installer/source/linux && $(PYTHON) Make.py && $(MAKE) && rm -f ../../config.dat

clean:
	cd ../Source && $(MAKE) -f linux.mak clean
	cd ../Kit/Linux && rm -rf tmp
	cd ../Import/MEINC_Installer/source/linux && $(MAKE) clean
	rm -f ../Import/MEINC_Installer/support/run*
	rm -f ../Import/MEINC_Installer/config.dat

kit:
	cd ../Kit/Linux && $(PYTHON) make_rpm.py

install:

test: