mirror of
https://github.com/agdsn/xerxes.git
synced 2026-06-19 21:58:01 +00:00
15 lines
208 B
Makefile
15 lines
208 B
Makefile
OBJECTS=xerxes.cxx socket.cxx
|
|
BIN=xerxes
|
|
|
|
$(BIN): $(OBJECTS)
|
|
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
|
|
|
|
all: $(BIN)
|
|
|
|
test: $(BIN)
|
|
./$(BIN)
|
|
|
|
clean:
|
|
rm -f $(BIN) *.o *.cxx~ *.hxx~ Makefile~
|
|
|
|
.PHONY: all |