Dateien nach "/" hochladen
This commit is contained in:
12
Makefile
Normal file
12
Makefile
Normal file
@@ -0,0 +1,12 @@
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -O2 -I. -Iyespower-arm/
|
||||
SOURCES = yespower-opt.c yespower-arm.c yespower-platform.c
|
||||
TEST_OUTPUT = test_yespower
|
||||
|
||||
all: $(TEST_OUTPUT)
|
||||
|
||||
$(TEST_OUTPUT): $(SOURCES) tests/test_yespower.c
|
||||
$(CC) $(CFLAGS) $(SOURCES) tests/test_yespower.c -o $(TEST_OUTPUT)
|
||||
|
||||
clean:
|
||||
rm -f $(TEST_OUTPUT)
|
||||
Reference in New Issue
Block a user