Files
mckernel/test/issues/1221/Makefile
Tomoki Shirasawa f115bae8a7 include interrupt handling time into system time
Change-Id: If2ed2d488b4040d288d712f0a244505adbcec6f5
Refs: #1221
2019-09-26 03:21:28 +00:00

14 lines
148 B
Makefile

CC = gcc
TARGET = C1221T01
all:: $(TARGET)
C1221T01: C1221T01.c
$(CC) -g -Wall -o $@ $^
test:: all
sh ./C1221.sh
clean::
rm -f $(TARGET) *.o