| 12345678910111213141516171819202122232425262728293031323334353637383940 | # # 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 MakefilesPROG = chatSRC = chat.cTOP = ../..CIVETWEB_LIB = libcivetweb.aSSL_CERT = ssl_cert.pemCFLAGS = -I$(TOP)/include $(COPT)LIBS = -lpthreadinclude $(TOP)/resources/Makefile.in-osifeq ($(TARGET_OS),LINUX) 	LIBS += -ldlendifall: $(PROG) $(SSL_CERT)$(PROG): $(CIVETWEB_LIB) $(SRC)	$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(SRC) $(CIVETWEB_LIB) $(LIBS)$(CIVETWEB_LIB):	$(MAKE) -C $(TOP) clean lib	cp $(TOP)/$(CIVETWEB_LIB) .$(SSL_CERT):	cp $(TOP)/resources/$(SSL_CERT) .clean:	rm -f $(CIVETWEB_LIB) $(PROG) $(SSL_CERT).PHONY: all clean
 |