summaryrefslogtreecommitdiff
path: root/Servers/TTYServer/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Servers/TTYServer/Makefile')
-rw-r--r--Servers/TTYServer/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/Servers/TTYServer/Makefile b/Servers/TTYServer/Makefile
new file mode 100644
index 0000000000..b65d1a8e65
--- /dev/null
+++ b/Servers/TTYServer/Makefile
@@ -0,0 +1,23 @@
+include ../../Makefile.common
+
+TTYSERVER_OBJS = \
+ main.o
+
+APP = TTYServer
+OBJS = $(TTYSERVER_OBJS)
+
+DEFINES += -DUSERLAND
+
+all: $(APP)
+
+$(APP): $(OBJS)
+ $(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lc -lcore
+
+.cpp.o:
+ @echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
+
+-include $(OBJS:%.o=%.d)
+
+clean:
+ @echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
+