Skip to content
Snippets Groups Projects
Select Git revision
  • main default protected
  • cont-frb/moberg-review
  • v0.9.26
  • v0.9.25
  • v0.9.24
  • v0.9.23
  • v0.9.22
  • v0.9.21
  • v0.9.20
  • v0.9.19
  • v0.9.18
  • v0.9.17
  • v0.9.16
  • v0.9.15
  • v0.9.14
  • v0.9.13
  • v0.9.12
  • v0.9.11
  • v0.9.10
  • v0.9.9
  • v0.9.8
  • v0.9.7
22 results

moberg_device.h

Blame
  • Makefile NaN GiB
    SUBDIRS=compiler lib test examples
    export LABCOMM_JAR=$(shell pwd)/compiler/labcomm_compiler.jar
    export LABCOMM=java -jar $(LABCOMM_JAR) 
    
    all: $(SUBDIRS:%=make-%)
    
    .PHONY: make-%
    make-%:
    	LD_LIBRARY_PATH=`pwd`/lib/c $(MAKE) -C $* -e 
    
    .PHONY: test
    test: $(SUBDIRS:%=test-%)
    
    .PHONY: test-%
    test-%:
    	LD_LIBRARY_PATH=`pwd`/lib/c $(MAKE) -C $* -e test
    
    .PHONY: clean
    clean: $(SUBDIRS:%=clean-%)
    
    .PHONY: clean-%
    clean-%:
    	$(MAKE) -C $* -e clean
    
    .PHONY: distclean
    distclean: $(SUBDIRS:%=distclean-%)
    
    .PHONY: distclean-%
    distclean-%:
    	$(MAKE) -C $* -e distclean