]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/civetweb/examples/_obsolete/hello/Makefile
import quincy beta 17.1.0
[ceph.git] / ceph / src / civetweb / examples / _obsolete / hello / Makefile
diff --git a/ceph/src/civetweb/examples/_obsolete/hello/Makefile b/ceph/src/civetweb/examples/_obsolete/hello/Makefile
deleted file mode 100644 (file)
index 4424e3b..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-# 
-# Copyright (c) 2013 No Face Press, LLC
-# License http://opensource.org/licenses/mit-license.php MIT License
-#
-
-#This makefile is used to test the other Makefiles
-
-
-PROG = hello
-SRC = hello.c
-
-TOP = ../..
-CIVETWEB_LIB = libcivetweb.a
-
-CFLAGS = -I$(TOP)/include $(COPT)
-LIBS = -lpthread
-
-include $(TOP)/resources/Makefile.in-os
-
-ifeq ($(TARGET_OS),LINUX) 
-       LIBS += -ldl
-endif
-
-all: $(PROG)
-
-$(PROG): $(CIVETWEB_LIB) $(SRC)
-       $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(SRC) $(CIVETWEB_LIB) $(LIBS)
-
-$(CIVETWEB_LIB):
-       $(MAKE) -C $(TOP) clean lib
-       cp $(TOP)/$(CIVETWEB_LIB) .
-
-clean:
-       rm -f $(CIVETWEB_LIB) $(PROG)
-
-.PHONY: all clean