summaryrefslogtreecommitdiffstats
path: root/src/Makefile
diff options
context:
space:
mode:
authorNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-05-29 16:34:00 -0400
committerNalin Dahyabhai <nalin.dahyabhai@pobox.com>2008-05-29 16:34:00 -0400
commit3a581cea65b2bd2784fed8d96a7ac803b33074c5 (patch)
tree376bb157c1cc2e132e69a00f5d3f7cde5106beb5 /src/Makefile
parentca4efef04651a0180682b0df42e4140e3e772a60 (diff)
- build infrastructure
- actually write that this is GPLv2
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/Makefile b/src/Makefile
deleted file mode 100644
index 39a1a05..0000000
--- a/src/Makefile
+++ /dev/null
@@ -1,14 +0,0 @@
-CFLAGS = $(shell pkg-config --cflags nspr nss) -g3 -O1 -Wall -Wimplicit -Wextra -Wno-unused -Wuninitialized -fPIC -D_REENTRANT
-LDFLAGS = -lnsl -lpthread
-
-all:: plugin.so dummyplugin.so portmap
-
-plugin.so: backend.c dispatch.c map.c nis.c plugin.c portmap.c defaults.h format.c defaults.c
- $(CC) $(CFLAGS) -shared -o $@ $^ $(LDFLAGS)
-dummyplugin.so: dispatch.c dummymap.c nis.c plugin.c plugin.h portmap.c
- $(CC) $(CFLAGS) -shared -o $@ $^ $(LDFLAGS)
-portmap: portmap.c
- $(CC) $(CFLAGS) -o $@ -DPORTMAP_MAIN $^ $(LDFLAGS)
-
-clean:
- $(RM) portmap plugin.so dummyplugin.so