File: Makefile.mak

package info (click to toggle)
htsengine 1.08-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 888 kB
  • ctags: 618
  • sloc: ansic: 5,301; sh: 3,821; makefile: 35
file content (32 lines) | stat: -rw-r--r-- 553 bytes parent folder | download | duplicates (6)
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

INSTALLDIR = C:\hts_engine_API

all:
	cd lib
	nmake /f Makefile.mak
	cd ..
	cd bin
	nmake /f Makefile.mak
	cd ..

clean:
	cd lib
	nmake /f Makefile.mak clean
	cd ..
	cd bin
	nmake /f Makefile.mak clean
	cd ..

install::
	@if not exist "$(INSTALLDIR)\lib" mkdir "$(INSTALLDIR)\lib"
	cd lib
	copy *.lib $(INSTALLDIR)\lib
	cd ..
	@if not exist "$(INSTALLDIR)\bin" mkdir "$(INSTALLDIR)\bin"
	cd bin
	copy *.exe $(INSTALLDIR)\bin
	cd ..
	@if not exist "$(INSTALLDIR)\include" mkdir "$(INSTALLDIR)\include"
	cd include
	copy *.h $(INSTALLDIR)\include
	cd ..