fake alias implementation
This commit is contained in:
9
alias/Makefile
Normal file
9
alias/Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
SRC = main.c
|
||||
OUT = fake_alias
|
||||
CFLAGS = -Wall -Wextra -g -fsanitize=address
|
||||
|
||||
all: $(SRC)
|
||||
$(CC) $(CFLAGS) $(SRC) -o $(OUT)
|
||||
|
||||
clean:
|
||||
$(RM) $(OUT)
|
||||
Reference in New Issue
Block a user