File: Makefile.vs

package info (click to toggle)
wildmidi 0.4.6-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,376 kB
  • sloc: ansic: 15,109; makefile: 378
file content (13 lines) | stat: -rw-r--r-- 347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# Makefile for Win32 using Visual Studio 2010 / newer:
#	nmake -f Makefile.vs

INCLUDES  = -I. -I..\include
CPPFLAGS  = -DNDEBUG -D_CRT_SECURE_NO_WARNINGS

CFLAGS    = -nologo /O2 /MD /W3
LDFLAGS   = -nologo /SUBSYSTEM:CONSOLE

DLL_FLAGS = $(CFLAGS) $(CPPFLAGS) -DWILDMIDI_BUILD -DDLL_EXPORT
PLY_FLAGS = $(CFLAGS) $(CPPFLAGS)

!INCLUDE common.mak