This repository has been archived on 2024-07-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
khet/src/Makefile
2008-10-11 00:40:56 +00:00

21 lines
320 B
Makefile

CFLAGS=-g -std=gnu99 -Wall -pedantic
LDFLAGS=$(CFLAGS)
all: server
server: server.o net.o asciiart.o game.o
clean:
-rm -f server *.o *~ Makefile.bak
depend:
makedepend *.c -Y. 2>/dev/null
# DO NOT DELETE
asciiart.o: game.h asciiart.h
game.o: net.h game.h
net.o: net.h server.h
server.o: net.h game.h asciiart.h