forked from intel-retail/software-vsync-modulation-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (27 loc) · 612 Bytes
/
Copy pathMakefile
File metadata and controls
33 lines (27 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Copyright (C) 2023 Intel Corporation
# SPDX-License-Identifier: MIT
#DIRS = $(shell find . -maxdepth 1 -type d -not -path "./.git" \
# -not -path "." -not -path "./release" -not -path "./cmn" | sort)
DIRS = lib synctest
.PHONY: $(DIRS)
MAKE += --no-print-directory
CFLAGS =-g
all:
@for dir in $(DIRS); do \
$(MAKE) -C $$dir; \
done
debug:
@for dir in $(DIRS); do \
$(MAKE) -C $$dir debug; \
done
clean:
@for dir in $(DIRS); do \
$(MAKE) -C $$dir clean; \
done
distclean:
@rm -rf release
release: distclean
@$(MAKE) clean
@$(MAKE)
@mkdir release
@cp lib/*.so synctest/synctest release