Commit 838294d2 authored by Samarth Joshi's avatar Samarth Joshi

Adding Makefile

parent ed5f3efd
File added
......@@ -15,10 +15,10 @@ CTARGET = Client
all: server client
client: $(CLI_SRC) $(CLI_HED)
$(CC) $(CFLAGS) $(CLISRC) -o $(CTARGET)
$(CC) $(CFLAGS) $(CLI_SRC) -o $(CTARGET)
server: $(SRV_SRV) $(SRV_HED)
$(CC) $(SFLAGS) $(SRVSRV) -o $(STARGET)
server: $(SRV_SRC) $(SRV_HED)
$(CC) $(SFLAGS) $(SRV_SRC) -o $(STARGET)
clean:
$(RM) -rf $(STARGET) $(CTARGET)
......
File added
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment