https://github.com/angeloschatzimparmpas/t-viSNE
Raw File
Tip revision: b0ecfedfd7d274a1197b3fe76765e57fed98973c authored by Angelos Chatzimparmpas on 11 January 2022, 12:07:10 UTC
Update README.md
Tip revision: b0ecfed
Makefile.win
CXX = cl.exe
CFLAGS = /nologo /O2 /EHsc /D "_CRT_SECURE_NO_DEPRECATE" /D "USEOMP" /openmp

TARGET = windows

all: $(TARGET) $(TARGET)\bh_tsne.exe

$(TARGET)\bh_tsne.exe: tsne_main.obj tsne.obj sptree.obj
	$(CXX) $(CFLAGS) tsne_main.obj tsne.obj sptree.obj -Fe$(TARGET)\bh_tsne.exe

sptree.obj: sptree.cpp sptree.h
	$(CXX) $(CFLAGS) -c sptree.cpp

tsne.obj: tsne.cpp tsne.h sptree.h vptree.h
	$(CXX) $(CFLAGS) -c tsne.cpp

tsne_main.obj: tsne_main.cpp tsne.h sptree.h vptree.h
	$(CXX) $(CFLAGS) -c tsne_main.cpp

.PHONY: $(TARGET)
$(TARGET):
	-mkdir $(TARGET)

clean:
	-erase /Q *.obj *.exe $(TARGET)\. 
	-rd $(TARGET)
back to top