Moved screen buffer code to seperate file.
This commit is contained in:
parent
d10d44af6b
commit
3f53f337c7
5 changed files with 223 additions and 152 deletions
15
C/Server/Makefile
Normal file
15
C/Server/Makefile
Normal 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
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue