mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 13:27:29 -04:00
Some checks failed
CI / setup (push) Has been cancelled
CI / build (32) (push) Has been cancelled
CI / build (64) (push) Has been cancelled
CI / tests (cache, 32) (push) Has been cancelled
CI / tests (cache, 64) (push) Has been cancelled
CI / tests (config1, 32) (push) Has been cancelled
CI / tests (config1, 64) (push) Has been cancelled
CI / tests (config2, 32) (push) Has been cancelled
CI / tests (config2, 64) (push) Has been cancelled
CI / tests (debug, 32) (push) Has been cancelled
CI / tests (debug, 64) (push) Has been cancelled
CI / tests (opencl, 32) (push) Has been cancelled
CI / tests (opencl, 64) (push) Has been cancelled
CI / tests (regression, 32) (push) Has been cancelled
CI / tests (regression, 64) (push) Has been cancelled
CI / tests (scope, 32) (push) Has been cancelled
CI / tests (scope, 64) (push) Has been cancelled
CI / tests (stress, 32) (push) Has been cancelled
CI / tests (stress, 64) (push) Has been cancelled
CI / tests (synthesis, 32) (push) Has been cancelled
CI / tests (synthesis, 64) (push) Has been cancelled
CI / complete (push) Has been cancelled
26 lines
No EOL
589 B
Makefile
26 lines
No EOL
589 B
Makefile
all:
|
|
$(MAKE) -C generic_queue
|
|
$(MAKE) -C mem_streamer
|
|
$(MAKE) -C cache_top
|
|
$(MAKE) -C core_top
|
|
$(MAKE) -C issue_top
|
|
$(MAKE) -C local_mem_top
|
|
$(MAKE) -C mem_unit_top
|
|
|
|
run:
|
|
$(MAKE) -C generic_queue run
|
|
$(MAKE) -C mem_streamer run
|
|
$(MAKE) -C cache_top run
|
|
$(MAKE) -C core_top run
|
|
$(MAKE) -C issue_top run
|
|
$(MAKE) -C local_mem_top run
|
|
$(MAKE) -C mem_unit_top run
|
|
|
|
clean:
|
|
$(MAKE) -C generic_queue clean
|
|
$(MAKE) -C mem_streamer clean
|
|
$(MAKE) -C cache_top clean
|
|
$(MAKE) -C core_top clean
|
|
$(MAKE) -C issue_top clean
|
|
$(MAKE) -C local_mem_top clean
|
|
$(MAKE) -C mem_unit_top clean
|