Skip to content
Snippets Groups Projects
Select Git revision
  • 7ba4679a35a8b7c3b814ba955a6414eeee8f6412
  • master default
  • labcomm2014
  • labcomm2006
  • python_sig_hash
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.6
  • v2015.0
  • v2014.5
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
21 results

Makefile

Blame
  • Makefile 384 B
    MODULES=LabCommDispatcher \
    	LabCommDecoderRegistry \
    	LabComm \
    	LabCommSample \
    	LabCommHandler \
    	LabCommEncoderRegistry \
    	LabCommDecoder \
    	LabCommType \
    	LabCommEncoderChannel \
    	LabCommEncoder \
    	LabCommDecoderChannel \
    
    all: labcomm.dll
    
    labcomm.dll: $(MODULES:%=se/lth/control/labcomm/%.cs) Makefile
    	mcs -out:$@ -target:library $(filter %.cs, $^)
    
    clean:
    	rm -f labcomm.dll