LIB=libstrongexit.so

all: $(LIB)

$(LIB): strongexit.c
	$(CC) $(CFLAGS) $< -o $@ -shared -fPIC $(LDFLAGS)

clean:
	rm -f $(LIB)
