Moved screen buffer code to seperate file.

This commit is contained in:
HylkeV 2016-12-07 20:34:08 +01:00
parent d10d44af6b
commit 3f53f337c7
5 changed files with 223 additions and 152 deletions

15
C/Server/Makefile Normal file
View file

@ -0,0 +1,15 @@
SDIR := ./
IDIR := ./
CC := gcc
CFILES := $(foreach dir,$(SDIR),$(wildcard $(dir)/*.c))
HFILES := $(foreach dir,$(HDIR),$(wildcard $(dir)/*.h))
build:
@echo
@echo Compiling and linking files
$(CC) $(CFILES) -I $(IDIR) -o pixelvloed -Wall
@echo Done
@echo