36 lines
528 B
Makefile
36 lines
528 B
Makefile
# Makefile to compile the unit test library, will end up in $(LIBDIR)
|
|
|
|
.PHONY: all install clean
|
|
|
|
all: libCppUnitLite.a
|
|
|
|
CC ?= gcc
|
|
CXX ?= g++
|
|
CPP ?= cpp
|
|
CXXFLAGS += -O2
|
|
|
|
sources = $(shell ls *.cpp)
|
|
objects = $(sources:.cpp=.o)
|
|
|
|
library = libCppUnitLite.a
|
|
|
|
$(library): $(objects)
|
|
ar crsv $@ $(objects)
|
|
ranlib $(library)
|
|
|
|
clean:
|
|
rm -f *.o *.*~ $(library)
|
|
|
|
check:
|
|
echo 'no check for CppUnitLite'
|
|
|
|
distdir:
|
|
|
|
# Richard: added the following dependencies so that recursive make works:
|
|
|
|
install: all
|
|
|
|
distclean: clean
|
|
|
|
check: all
|