pixelvloed/C/Server/Makefile
2017-02-18 01:24:00 +01:00

15 lines
286 B
Makefile

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) -Os -o pixelvloed -Wall
@echo Done
@echo