# ------------------------------------------------------------------- # Some helpful definitions # ------------------------------------------------------------------- # Preprocessed C/C++ source code _pre ?= .i # Compiled object file _obj ?= .o # Statically linked library _sll ?= .a ifeq ($(shell uname -o),Cygwin) # Dynamically linked library _dll ?= .dll # Executable file _exe ?= .exe else _dll ?= .so _exe ?= endif # Unit list prefix _units ?= units-