File: Makefile

package info (click to toggle)
codec2 1.2.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 76,376 kB
  • sloc: ansic: 436,819; cpp: 2,091; objc: 1,736; sh: 1,510; python: 1,405; asm: 683; makefile: 605
file content (9 lines) | stat: -rw-r--r-- 175 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
mex/%.mex: source/%.cpp
	octave-cli -qf --eval "mex -v -output $@ $<"

SRCS = $(wildcard source/*.cpp)
MEXS = ${SRCS:source%.cpp=mex%.mex}

all: $(MEXS)
clean:
	rm -f $(MEXS)