|
Last change
on this file since d2b411a was 2488852, checked in by dportnoy <dmp1488@…>, 13 years ago |
|
Added the player class, added a list of logged-in players, and changed the makefile to work properly, and made git ignore all build artifacts
|
-
Property mode
set to
100644
|
|
File size:
300 bytes
|
| Rev | Line | |
|---|
| [2488852] | 1 | CC = g++
|
|---|
| 2 | LIB_FLAGS = -lssl -lmysqlclient
|
|---|
| 3 | FLAGS = $(LIB_FLAGS)
|
|---|
| 4 | COMMON_PATH = ../common
|
|---|
| 5 | DEPENDENCIES = message.o player.o
|
|---|
| 6 |
|
|---|
| 7 | server : server.cpp $(DEPENDENCIES)
|
|---|
| 8 | $(CC) -o $@ $+ $(FLAGS)
|
|---|
| 9 |
|
|---|
| 10 | message.o : $(COMMON_PATH)/message.cpp
|
|---|
| 11 | $(CC) -c -o $@ $?
|
|---|
| 12 |
|
|---|
| 13 | %.o : %.cpp
|
|---|
| 14 | $(CC) -c -o $@ $?
|
|---|
| 15 |
|
|---|
| 16 | clean:
|
|---|
| 17 | rm *.o
|
|---|
| 18 | rm server
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.