summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvenaas <venaas>2008-02-12 12:39:07 +0000
committervenaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf>2008-02-12 12:39:07 +0000
commita639eb1334d6bb75735600fd3eb6ea769c96398d (patch)
tree77d7c0a49bcaf5dd7f5432d330b831ad739dc3e8
parent416c6fd6bff3013eebb33e68f1c648ef22e9a965 (diff)
Makefile for Solaris9
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.1@210 e88ac4ed-0b26-0410-9574-a7f39faa03bf
-rw-r--r--Makefile-solaris910
1 files changed, 10 insertions, 0 deletions
diff --git a/Makefile-solaris9 b/Makefile-solaris9
new file mode 100644
index 0000000..09f266b
--- /dev/null
+++ b/Makefile-solaris9
@@ -0,0 +1,10 @@
+CFLAGS = -g -Wall -pedantic -pthread -D_POSIX_PTHREAD_SEMANTICS -D_POSIX_C_SOURCE -D__EXTENSIONS__ -D_XPG4_2 -DSYS_SOLARIS9
+LDFLAGS = -lssl -lsocket
+OBJ = util.o debug.o list.o gconfig.o radsecproxy.o
+
+all: radsecproxy
+
+radsecproxy: $(OBJ)
+ $(CC) $(CFLAGS) $(OBJ) $(LDFLAGS) -o radsecproxy
+clean:
+ rm -f $(OBJ) radsecproxy