mirror of
https://github.com/caperren/school_archives.git
synced 2025-11-10 06:01:13 +00:00
8 lines
109 B
Makefile
8 lines
109 B
Makefile
all: clean build
|
|
|
|
build:
|
|
g++ main.cpp ChatClient.h ChatClient.cpp -o chatclient
|
|
|
|
clean:
|
|
rm -f chatclient
|