diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-09-11 19:38:54 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2008-09-11 19:38:54 -0700 |
commit | cadaa93b915458525abb4887b31d81905a1cd0aa (patch) | |
tree | 70a5400f33575f6d2245d0ce6b5e274d1d1fe7d0 | |
parent | 5f48316d12acc598748c9ba3bd7467d257b7baed (diff) |
Remove old makefiles
-rw-r--r-- | Makefile | 69 | ||||
-rw-r--r-- | Makefile.meta | 69 |
2 files changed, 0 insertions, 138 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index 1e52d9c..0000000 --- a/Makefile +++ /dev/null @@ -1,69 +0,0 @@ -InstallRoot = /home/peterson -SHELL=/bin/sh -INSTALL = install -DFLAG = -g - -################################################################## -# -# xscope -- spy on characters to and from an X11 server -# -# Author: JLPeterson, MCC -# -# Installs bin/xscope -# -################################################################## - -CFLAGS = ${DFLAG} ${IFLAGS} - -all: xscope - -SRCS = scope.c common.c fd.c server.c decode11.c table11.c print11.c prtype.c -OBJS = scope.o common.o fd.o server.o decode11.o table11.o print11.o prtype.o - -xscope: ${OBJS} - ${CC} ${CFLAGS} ${OBJS} -o xscope - - -################################################################## - -install: all - ${INSTALL} xscope /home/peterson/bin/xscope - ${INSTALL} xscope.1 /home/peterson/man/xscope.1 - - -################################################################## -# -# configuration -# -config: - sed 's|$$<\InstallRoot>|'"${InstallRoot}|g" < Makefile.meta > Makefile - - -################################################################## -# -# lint -# -lint: - lint -bux ${IFLAGS} ${SRCS} - -################################################################## -# -# clean -# -clean: - rm -f *.o xscope - rm -f core load.map *~ \#* - -################################################################## -# -# dependencies -# -scope.o: scope.c scope.h -common.o: common.c scope.h -fd.o: fd.c fd.h scope.h -server.o: server.c scope.h x11.h -decode11.o: decode11.c scope.h x11.h -table11.o: table11.c scope.h x11.h -print11.o: print11.c scope.h x11.h -prtype.o: prtype.c scope.h x11.h -scope.h: fd.h diff --git a/Makefile.meta b/Makefile.meta deleted file mode 100644 index c962af0..0000000 --- a/Makefile.meta +++ /dev/null @@ -1,69 +0,0 @@ -InstallRoot = $<InstallRoot> -SHELL=/bin/sh -INSTALL = install -DFLAG = -g - -################################################################## -# -# xscope -- spy on characters to and from an X11 server -# -# Author: JLPeterson, MCC -# -# Installs bin/xscope -# -################################################################## - -CFLAGS = ${DFLAG} ${IFLAGS} - -all: xscope - -SRCS = scope.c common.c fd.c server.c decode11.c table11.c print11.c prtype.c -OBJS = scope.o common.o fd.o server.o decode11.o table11.o print11.o prtype.o - -xscope: ${OBJS} - ${CC} ${CFLAGS} ${OBJS} -o xscope - - -################################################################## - -install: all - ${INSTALL} xscope $<InstallRoot>/bin/xscope - ${INSTALL} xscope.1 $<InstallRoot>/man/xscope.1 - - -################################################################## -# -# configuration -# -config: - sed 's|$$<\InstallRoot>|'"${InstallRoot}|g" < Makefile.meta > Makefile - - -################################################################## -# -# lint -# -lint: - lint -bux ${IFLAGS} ${SRCS} - -################################################################## -# -# clean -# -clean: - rm -f *.o xscope - rm -f core load.map *~ \#* - -################################################################## -# -# dependencies -# -scope.o: scope.c scope.h -common.o: common.c scope.h -fd.o: fd.c fd.h scope.h -server.o: server.c scope.h x11.h -decode11.o: decode11.c scope.h x11.h -table11.o: table11.c scope.h x11.h -print11.o: print11.c scope.h x11.h -prtype.o: prtype.c scope.h x11.h -scope.h: fd.h |