summaryrefslogtreecommitdiff
path: root/usocks/makefile
blob: 09eb109f58f1e4ea23bc5e0f0ab7125e732fac08 (plain)
    1 CC = cc
    2 LIB = preloadable-usocks.so
    3 SOURCES = usocks.c
    4 
    5 $(LIB): $(SOURCES)
    6 	$(CC) $(CFLAGS) -fPIC -ldl -shared -o $(@) $(SOURCES)
    7 
    8 all: $(LIB)
    9 clean: ; rm -f $(LIB)
   10 force: clean all

Generated by cgit