File: Makefile.win

package info (click to toggle)
mseed2sac 2.3%2Bds1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 292 kB
  • sloc: ansic: 2,394; makefile: 32
file content (17 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#
# Nmake file - For MS Visual C++ version
# Use 'nmake -f Makefile.win'

all: 
	cd libmseed
	nmake -f Makefile.win
	cd ..\src
	nmake -f Makefile.win
	cd ..

clean:
	cd libmseed
	nmake -f Makefile.win clean
	cd ..\src
	nmake -f Makefile.win clean
	cd ..