C-Multiplayer-Game-Server / Multiplayer Game Server GH / Makefile
Makefile
Raw
CURR = ./battle

CC = gcc
CFLAGS = -Wall -O2
FILES = $(CURR)

PORT=52934
CFLAGS= -DPORT=\$(PORT) -g -Wall

all: $(FILES)