Cleanup Makefile

This commit is contained in:
2023-04-25 09:39:40 +02:00
parent b92134ed11
commit 7cb36fee4d

View File

@@ -1,11 +1,8 @@
CC := gcc
CFLAGS := -std=c11 -Wall -Wextra -g
CPPFLAGS :=
LDLIBS :=
fakeid.so: fakeid.c
$(CC) $(CFLAGS) -shared -fPIC -o fakeid.so fakeid.c
$(CC) $(CFLAGS) -shared -fPIC -o $@ $<
.PHONY: clean
clean: