summaryrefslogtreecommitdiff
path: root/src/nslcd-proto/Makefile
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2015-08-26 12:09:06 -0600
committerLuke Shumaker <lukeshu@sbcglobal.net>2015-08-26 12:09:06 -0600
commita6ac8f680062069b2821214f5b74cc96673ee4ca (patch)
tree75e403a1c4a4b82ea81a353e84060b6a3b70d307 /src/nslcd-proto/Makefile
parent75c89781ab3ed908307920e4acdeb86f275f2faa (diff)
clean up
Diffstat (limited to 'src/nslcd-proto/Makefile')
-rw-r--r--src/nslcd-proto/Makefile10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/nslcd-proto/Makefile b/src/nslcd-proto/Makefile
deleted file mode 100644
index fce3d2f..0000000
--- a/src/nslcd-proto/Makefile
+++ /dev/null
@@ -1,10 +0,0 @@
-backend.go: structures.go Makefile
- { \
- echo 'package nslcd_proto' && \
- echo 'type Backend interface {' && \
- sed -rn 's/^type Request_([^_ ]+)(_\S+)?.*/\1\2(Request_\1\2) []\1/p' $< | grep -v PAM && \
- sed -rn 's/^type Request_(PAM)(_\S+)?.*/\1\2(Request_\1\2) []\1\2/p' $< && \
- echo '}' && \
- :; } | gofmt > $@
-
-.DELETE_ON_ERROR: