HEX
Server: Apache
System: Linux eisbus 6.8.12-9-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-9 (2025-03-16T19:18Z) x86_64
User: www-data (33)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: //usr/share/doc/sendmail-base/examples/milter/Makefile
#!/usr/bin/make -f
SHELL= /bin/sh

# Define standard compile/install flags
CC = gcc
CFLAGS = -O2 -Wall
INSTALL = install
INCLS = -I.
DEFS =
CFLAGS += $(DEFS) $(INCLS)
LDFLAGS =
LIBS =	/usr/lib/libmilter/libmilter.a \
	/usr/lib/libmilter/libsm.a \
	-lldap -llber \
	-lbind \
	-pthread

all: sample

sample: sample.c
	@rm -f $@
	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $? $(LIBS)

clean:
	rm -rf sample *~