File: Makefile.msvc

package info (click to toggle)
camljava 0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 260 kB
  • ctags: 259
  • sloc: ansic: 813; ml: 333; java: 302; makefile: 86
file content (14 lines) | stat: -rwxr-xr-x 173 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
MK=$(MAKE) -f Makefile.msvc

all:
	cd lib; $(MK) all

install:
	cd lib; $(MK) install

tst:
	cd test; $(MK)

clean:
	cd lib; $(MK) clean
	cd test; $(MK) clean