diff options
Diffstat (limited to 'src/eap_peer/Makefile')
-rw-r--r-- | src/eap_peer/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/eap_peer/Makefile b/src/eap_peer/Makefile new file mode 100644 index 0000000000000..d9449a28da42d --- /dev/null +++ b/src/eap_peer/Makefile @@ -0,0 +1,12 @@ +all: + @echo Nothing to be made. + +clean: + for d in $(SUBDIRS); do make -C $$d clean; done + rm -f *~ *.o *.so *.d + +install: + if ls *.so >/dev/null 2>&1; then \ + install -d $(DESTDIR)$(LIBDIR)/wpa_supplicant && \ + cp *.so $(DESTDIR)$(LIBDIR)/wpa_supplicant \ + ; fi |