Merge pull request #15 from agners/example-fixes

Fix examples
pull/22/head
Andri Yngvason 2020-01-27 00:17:09 +00:00 committed by GitHub
commit 844645d63b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 3 deletions

View File

@ -17,7 +17,7 @@ $(BUILD_DIR)/png-server: $(BUILD_DIR)/png-server.o $(BUILD_DIR)/pngfb.o
$(BUILD_DIR)/draw: $(BUILD_DIR)/draw.o ; $(LINK_EXE) $(BUILD_DIR)/draw: $(BUILD_DIR)/draw.o ; $(LINK_EXE)
$(BUILD_DIR)/%.o: %.c | $(BUILD_DIR) ; $(CC_OBJ) -I../include $(BUILD_DIR)/%.o: %.c | $(BUILD_DIR) ; $(CC_OBJ)
$(BUILD_DIR)/pngfb.o: ../src/pngfb.c | $(BUILD_DIR) $(BUILD_DIR)/pngfb.o: ../src/pngfb.c | $(BUILD_DIR)
$(CC_OBJ) -I../include $(CC_OBJ) -I../include

View File

@ -14,7 +14,7 @@
* PERFORMANCE OF THIS SOFTWARE. * PERFORMANCE OF THIS SOFTWARE.
*/ */
#include "neatvnc.h" #include <neatvnc.h>
#include <stdio.h> #include <stdio.h>
#include <uv.h> #include <uv.h>

View File

@ -3,7 +3,6 @@
* benchmarks. * benchmarks.
*/ */
#include "util.h"
#include "neatvnc.h" #include "neatvnc.h"
#include <stdlib.h> #include <stdlib.h>