diff options
author | jsorg71 <jsorg71> | 2008-12-16 02:47:45 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2008-12-16 02:47:45 +0000 |
commit | af83cb7cae6c79866518da1627264397b6afc151 (patch) | |
tree | 69f87fe0b3ac3b201a866979db3551ac873d6d34 /sesman/sessvc | |
parent | 8090df64a5a74e899d5494570e33b7391dc45a3c (diff) | |
download | xrdp-proprietary-af83cb7cae6c79866518da1627264397b6afc151.tar.gz xrdp-proprietary-af83cb7cae6c79866518da1627264397b6afc151.zip |
remove old makefiles
Diffstat (limited to 'sesman/sessvc')
-rw-r--r-- | sesman/sessvc/Makefile | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/sesman/sessvc/Makefile b/sesman/sessvc/Makefile deleted file mode 100644 index 39905e94..00000000 --- a/sesman/sessvc/Makefile +++ /dev/null @@ -1,29 +0,0 @@ - -SESSVCOBJ = sessvc.o os_calls.o log.o - -CFGDIR = /etc/xrdp -PIDDIR = /var/run -LIBDIR = /usr/local/lib/xrdp -SBINDIR = /usr/local/sbin - -CFLAGS = -Wall -O2 -I../../common -LDFLAGS = -lpthread -ldl -C_OS_FLAGS = $(CFLAGS) -c -CC = gcc - -all: xrdp-sessvc - -xrdp-sessvc: $(SESSVCOBJ) - $(CC) $(LDFLAGS) -o xrdp-sessvc $(SESSVCOBJ) - -clean: - rm -f $(SESSVCOBJ) xrdp-sessvc - -install: - install xrdp-sessvc $(SBINDIR)/xrdp-sessvc - -os_calls.o: ../../common/os_calls.c - $(CC) $(C_OS_FLAGS) ../../common/os_calls.c - -log.o: ../../common/log.c - $(CC) $(C_OS_FLAGS) -DLOG_ENABLE_THREAD ../../common/log.c |