mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-01 03:19:27 -05:00
28 lines
371 B
Makefile
28 lines
371 B
Makefile
#
|
|
# This file used under Irix (SGI) - please modify for your needs
|
|
#
|
|
CC = cc -signed
|
|
|
|
#For Optimization
|
|
CFLAGS= -O2
|
|
#For debugging
|
|
#CFLAGS= -g
|
|
|
|
#
|
|
# Create Executables
|
|
#
|
|
web_ldap: web_ldap.o util.o
|
|
$(CC) -o web_ldap web_ldap.o util.o \
|
|
libldap.a liblber.a
|
|
|
|
#
|
|
# Create Objects
|
|
#
|
|
web_ldap.o: web_ldap.c
|
|
$(CC) -c web_ldap.c
|
|
|
|
util.o: util.c
|
|
$(CC) -c util.c
|
|
#
|
|
# all done
|
|
#
|