t-viSNE: Interactive Assessment and Interpretation of t-SNE Projections https://doi.org/10.1109/TVCG.2020.2986996
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
t-viSNE/Makefile.win

26 lines
618 B

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)