Skip to content
Snippets Groups Projects
Select Git revision
  • develop default
  • 2023.w43
  • 2023.w42
  • 2023.w41
  • 2023.w40
  • 2023.w39
  • 2023.w38
  • 2023.w37
  • 2023.w36
  • 2023.w34
  • 2023.w33
  • 2023.w32
  • v2.0.0
  • 2023.w31
  • 2023.w30
  • 2023.w29
  • 2023.w28
  • 2023.w27
  • 2023.w26
  • 2023.w25
  • 2023.w24
21 results

Makefile

Blame
  • user avatar
    Navid Nikaein authored
    git-svn-id: http://svn.eurecom.fr/openair4G/trunk@5793 818b1a75-f10b-46b9-bf7c-635c3b92a50f
    081b0783
    History
    Makefile 660 B
    
    
    build: 
    	./build_oai.bash -c  -m
    
    build_rtai:
    	./build_oai.bash -c -b -eRTAI -tSOFTMODEM  -m
    
    build_usrp_rtai:
    	./build_oai.bash -c -b -eRTAI -tSOFTMODEM -wUSRP -m
    
    
    help:
    	@echo make check1 performs a simple sanity check
    	@echo make check2 performs another simple sanity check
    	@echo make check does both the above checks
    
    all: help
    
    check1:
    	@echo Doing 1 eNB 1 UE test
    	(cd SIMU/EXAMPLES/VIRT_EMUL_1eNB && make one_eNB_one_UE )
    
    check2:
    	@echo Doing 1 eNB 4 UE test
    	(cd SIMU/EXAMPLES/VIRT_EMUL_1eNB && make one_eNB_four_UE )
    
    install:
    	@echo Generating ASN1 files
    	@sh SCRIPTS/install_asn1.sh 
    
    check: check1 check2
    
    clean:
    	(cd SIMU/USER && make clean)