The following test set: execve: fix memory leak add: NULL check for master_channel at IKC interrupt_handler. Fix the check routine for elf sections (Fujitsu: POSTK_TEMP_FIX_77) Change-Id: I16c2a341c48f6df10a4839be08b93ea16bda8fbe Refs: #727 Refs: #873 Refs: #1011
15 lines
130 B
Makefile
15 lines
130 B
Makefile
CC = gcc
|
|
TARGET=exec
|
|
|
|
all: $(TARGET)
|
|
|
|
exec: exec.c
|
|
$(CC) -o $@ $^ $(LDFLAGS)
|
|
|
|
test: all
|
|
./run.sh
|
|
|
|
clean:
|
|
rm -f $(TARGET) *.o
|
|
|