Files
mckernel/test/issues/1165/Makefile
Tomoki Shirasawa 7e342751a2 do_syscall: Delegate system calls to the mcexec with the same pid
This includes the following fix:
send_syscall, do_syscall: remove argument pid

Fujitsu: POSTK_TEMP_FIX_26
Refs: #1165
Change-Id: I702362c07a28f507a5e43dd751949aefa24bc8c0
2018-09-13 16:59:47 +09:00

14 lines
164 B
Makefile

CC=gcc
TARGET=C1165T01
all:: $(TARGET)
C1024T01: C1165T01.c
$(CC) -o C1165T01 C1165T01.c -Wall -g
test:: $(TARGET)
sh ./C1165.sh
clean::
rm -f *.o $(TARGET)