mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-30 21:46:31 +00:00
8ab02e0962
Add override with EXTRA_CLEAN for lib.mk clean to fix the following warnings from clean target run. Makefile:24: warning: overriding recipe for target 'clean' ../lib.mk:55: warning: ignoring old recipe for target 'clean' Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
24 lines
454 B
Makefile
24 lines
454 B
Makefile
CFLAGS += -O2 -g -std=gnu89 -pthread -Wall -Wextra
|
|
CFLAGS += -I../../../../usr/include/
|
|
LDFLAGS += -pthread
|
|
|
|
TEST_PROGS = sync_test
|
|
|
|
all: $(TEST_PROGS)
|
|
|
|
include ../lib.mk
|
|
|
|
OBJS = sync_test.o sync.o
|
|
|
|
TESTS += sync_alloc.o
|
|
TESTS += sync_fence.o
|
|
TESTS += sync_merge.o
|
|
TESTS += sync_wait.o
|
|
TESTS += sync_stress_parallelism.o
|
|
TESTS += sync_stress_consumer.o
|
|
TESTS += sync_stress_merge.o
|
|
|
|
sync_test: $(OBJS) $(TESTS)
|
|
|
|
EXTRA_CLEAN := sync_test $(OBJS) $(TESTS)
|