Skip to content
Permalink
main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
@skoranda
Latest commit 33dbc11 Apr 4, 2018 History
First commit of Mailman3 with REST API extensions needed for
provisioning from COmanage.
1 contributor

Users who have contributed to this file

18 lines (12 sloc) 298 Bytes
# Taken from https://github.com/ncopa/su-exec
CFLAGS ?= -Wall -Werror -g
LDFLAGS ?=
PROG := su-exec
SRCS := $(PROG).c
all: $(PROG)
$(PROG): $(SRCS)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
$(PROG)-static: $(SRCS)
$(CC) $(CFLAGS) -o $@ $^ -static $(LDFLAGS)
clean:
rm -f $(PROG) $(PROG)-static