mirror of
https://github.com/agdsn/xerxes.git
synced 2026-06-19 21:58:01 +00:00
5 lines
97 B
Makefile
5 lines
97 B
Makefile
OBJECTS=xerxes.cxx
|
|
BIN=xerxes
|
|
|
|
$(BIN): $(OBJECTS)
|
|
g++ -o $(BIN) $(OBJECTS) -Wall -pedantic -ggdb
|