summaryrefslogtreecommitdiff
path: root/src/client/Makefile
diff options
context:
space:
mode:
authororoborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-06-28 16:38:35 +0000
committeroroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e>2008-06-28 16:38:35 +0000
commit2d776fcd61be168e1ff0ff2e4a5e71835e7cea19 (patch)
tree7cf274897bf540d5332d446f583ffd066e4e2e1d /src/client/Makefile
parentb877ae23ac5d380ab3aa48d7724045cf4883b186 (diff)
- prekopanie adresarovej struktury, prva cast
git-svn-id: http://opensvn.csie.org/tuxanci_ng@77 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/client/Makefile')
-rw-r--r--src/client/Makefile36
1 files changed, 36 insertions, 0 deletions
diff --git a/src/client/Makefile b/src/client/Makefile
new file mode 100644
index 0000000..c5637ea
--- /dev/null
+++ b/src/client/Makefile
@@ -0,0 +1,36 @@
+
+
+all: client.o configFile.o font.o game.o image.o interface.o keytable.o language.o layer.o panel.o screen.o term.o
+
+client.o: client.c client.h
+ $(CC) $(CFLAGS) -o client.o -c client.c
+
+configFile.o: configFile.c configFile.h
+ $(CC) $(CFLAGS) -o configFile.o -c configFile.c
+
+font.o: font.c font.h
+ $(CC) $(CFLAGS) -o font.o -c font.c
+
+game.o: game.c game.h
+ $(CC) $(CFLAGS) -o game.o -c game.c
+
+image.o: image.c image.h
+ $(CC) $(CFLAGS) -o image.o -c image.c
+
+interface.o: interface.c interface.h
+ $(CC) $(CFLAGS) -o interface.o -c interface.c
+
+layer.o: layer.c layer.h
+ $(CC) $(CFLAGS) -o layer.o -c layer.c
+
+panel.o: panel.c panel.h
+ $(CC) $(CFLAGS) -o panel.o -c panel.c
+
+screen.o: screen.c screen.h
+ $(CC) $(CFLAGS) -o screen.o -c screen.c
+
+term.o: term.c term.h
+ $(CC) $(CFLAGS) -o term.o -c term.c
+
+clean:
+ rm -rf *.o