7b2d710cd0
- Not compiled by default, nor hooked up to anything yet. - Both libraries licensed under modified BSD license. - Added top-level CMake file for both, to create a plain static library for each.
18 lines
291 B
Makefile
18 lines
291 B
Makefile
|
|
CC = cl
|
|
CL = link
|
|
|
|
CFLAGS = /O2 /Ob2 /Oi /Ot /Oy /GT /GL /TC /I ..\include
|
|
LFLAGS = /LTCG
|
|
|
|
LIBS = ..\lib\hts_engine_API.lib winmm.lib
|
|
|
|
all: hts_engine.exe
|
|
|
|
hts_engine.exe : hts_engine.obj
|
|
$(CC) $(CFLAGS) /c $(@B).c
|
|
$(CL) $(LFLAGS) /OUT:$@ $(LIBS) $(@B).obj
|
|
|
|
clean:
|
|
del *.exe
|
|
del *.obj
|