From 17c5c7dbbf673b2e521dcc71900ae22abfbcfc8c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20Ter=C3=A4s?= Date: Thu, 22 Jul 2010 16:58:58 +0300 Subject: squark-auth: initial commit Basic functionality implemented. --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..01d7400 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +CC=gcc +OBJS1=squark-auth.o +TARGETS=squark-auth +CFLAGS=-g -I. $(shell net-snmp-config --cflags) -std=gnu99 -Wall +BUILDLIBS=$(shell net-snmp-config --libs) + +all: $(TARGETS) + +squark-auth: $(OBJS1) + $(CC) -g -o $@ $(OBJS1) $(BUILDLIBS) -nopie + +clean: + rm $(OBJS1) $(TARGETS) + -- cgit v1.2.3