Skip to content

Makefile.mex

Dmitry Ponyatov edited this page Aug 13, 2019 · 1 revision
.PHONY: all clean

all: ./mex$(EXE)
	./mex$(EXE)
	
C = mex.cpp
H = mex.hpp

./mex$(EXE): $(C) $(H)
	$(CXX) $(CXXFLAGS) -o $@ $(C) $(L)
Clone this wiki locally