diff options
| author | ckrinitsin <101062646+ckrinitsin@users.noreply.github.com> | 2025-03-20 12:15:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-20 12:15:53 +0100 |
| commit | ae8de5f25623ed6f39f8f6c9c0f837c8f286b8c0 (patch) | |
| tree | ffae5c5b9498ce82fe53244aebb7c7dafc46d4ab /Makefile | |
| parent | 481c97567aa1cb54edd169841d1266a7a59a0227 (diff) | |
| parent | a509d8e7c953aa80eed3b7288bd3af9bca68dd48 (diff) | |
| download | BT-Programming-Assignment-ae8de5f25623ed6f39f8f6c9c0f837c8f286b8c0.tar.gz BT-Programming-Assignment-ae8de5f25623ed6f39f8f6c9c0f837c8f286b8c0.zip | |
Merge pull request #1 from ckrinitsin/hashtable
Hashtable
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Makefile b/Makefile index 0e899bb..16376f5 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,11 @@ -flags := -std=c++20 -Wall -Wextra -Wpedantic -O3 +CXX = g++ +CXXFLAGS := -std=c++23 -Wall -Wextra -Wpedantic -O3 -server_bin: server/src/main.cpp - g++ $^ ${flags} -o $@ -client_bin: - g++ $^ ${flags} -o $@ +server: src/server/main.cpp + ${CXX} ${CXXFLAGS} $^ -o $@ +client: + ${CXX} ${CXXFLAGS} $^ -o $@ .PHONY: clean clean: - rm -f server_bin client_bin + rm -f server client |