Skip to content
Snippets Groups Projects
Select Git revision
  • dev
  • master default protected
  • gitkeep
  • Issue/2309-docs
  • Hotfix/2455-missingQuotaCheck
  • Issue/2328-noFailOnLog
  • Issue/2414-resourceTypesAffilAndAllocQuota
  • Hotfix/2427-adminTrouble
  • Hotfix/2428-savingRwthRdsS3
  • Fix/xxxx-enableResTypesForAllOrgas
  • Hotfix/2392-fixEmptyResult
  • Issue/2326-supportedOrganizations
  • Hotfix/2382-guestStillBuggy
  • Hotfix/2377-hidingSensibleInformationGuestRole
  • Hotfix/2371-fixGitLabinRCV
  • Fix/xxxx-activateGitlab
  • Test/xxxx-enablingGitLab
  • Issue/2275-DocuGitlabResourceType
  • Issue/2349-gitlabHttps
  • Issue/2287-guestRole
  • v3.5.7
  • v3.5.6
  • v3.5.5
  • v3.5.4
  • v3.5.3
  • v3.5.2
  • v3.5.1
  • v3.5.0
  • v3.4.4
  • v3.4.3
  • v3.4.2
  • v3.4.1
  • v3.4.0
  • v3.3.3
  • v3.3.2
  • v3.3.1
  • v3.3.0
  • v3.2.5
  • v3.2.4
  • v3.2.3
40 results

nunit3-junit.xslt

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Makefile 895 B
    include ../make.config
    
    all: hello-static hello-dynamic hello
    
    hello-static: hello.c initialization.h
    	$(CC) $(CFLAGS) $(FLAGS_OPENMP) $< -o $@
    
    libinit.so: initialization.c initialization.h
    	$(CC) $(CFLAGS) $(OPENMP_INCLUDE) $< -shared -fPIC -o $@
    
    hello-dynamic: hello.c libinit.so
    	$(CC) $(CFLAGS) $(FLAGS_OPENMP) -DDYN_TOOL -L. -Wl,--no-as-needed -linit -Wl,--as-needed -Wl,--rpath,. $< -o $@
    
    hello: hello.c
    	$(CC) $(CFLAGS) $(FLAGS_OPENMP) -DDYN_TOOL $< -o $@
    
    run-static: hello-static
    	./hello-static
    
    run-dynamic: hello-dynamic
    	./hello-dynamic
    
    run-preload: hello libinit.so
    	env LD_PRELOAD=$(PWD)/libinit.so ./hello
    
    run-ompt-var: hello libinit.so
    	env OMP_TOOL_LIBRARIES=$(PWD)/libinit.so ./hello
    
    run:run-static run-dynamic run-preload run-ompt-var
    
    .PHONY:all run-static run-dynamic run-preload run-ompt-var run clean
    
    clean:
    	$(RM) hello-static hello-dynamic hello libinit.so *~