#!/bin/bash # # OSAL makefile # # Created on: Mar 04, 2010 # Author: ziemke # Author: Claas Ziemke # Copyright 2010, Claas Ziemke # BASEDIR=../../ include $(BASEDIR)options.mk OBJ = $(BUILDDIR)/TcDistributor.o\ $(BUILDDIR)/CCSDSDistributor.o all: $(OBJ) $(BUILDDIR)/%.o: %.cpp %.h $(CPP) $(CFLAGS) $(DEFINES) $(CCOPT) ${INCLUDE} -c $< -o $@ clean: $(RM) *.o *.gcno *.gcda