8 lines
117 B
Makefile
8 lines
117 B
Makefile
|
|
||
|
all: test_openat
|
||
|
|
||
|
test_openat: test_openat.c
|
||
|
$(CC) $(CFLAGS) -o openat test_openat.c
|
||
|
|
||
|
clean veryclean:
|
||
|
$(RM) Hello
|