summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBjoern B. Brandenburg <bbb@cs.unc.edu>2008-11-08 21:45:44 -0500
committerBjoern B. Brandenburg <bbb@cs.unc.edu>2008-11-08 21:45:44 -0500
commitdbdb811a58aeffdce6a2d7b2064dc588d5a055ab (patch)
tree5d087c85c0f6e74457351e2d3ef92756b2d87bb6
parentf198d1acb2c9c897263ab46150dbe19af2550ce5 (diff)
adopt common naming scheme
-rw-r--r--.gitignore4
-rw-r--r--Makefile10
-rwxr-xr-xst_draw5
3 files changed, 10 insertions, 9 deletions
diff --git a/.gitignore b/.gitignore
index eb774ec..d6c48bb 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,7 @@
2*.a 2*.a
3*.eps 3*.eps
4*.pdf 4*.pdf
5showst 5st_show
6st2pl 6st_convert
7\#* 7\#*
8.\#* 8.\#*
diff --git a/Makefile b/Makefile
index ca5f4d2..f23473d 100644
--- a/Makefile
+++ b/Makefile
@@ -17,15 +17,15 @@ LIB = eheap.o load.o ${LITMUS_LIB}
17vpath %.h include/ 17vpath %.h include/
18vpath %.c src/ 18vpath %.c src/
19 19
20APPS = st2pl showst 20APPS = st_show st_convert
21 21
22all: ${APPS} 22all: ${APPS}
23 23
24st2pl: st2pl.o ${LIB} 24st_convert: st2pl.o ${LIB}
25 gcc ${CFLAGS} -o st2pl st2pl.o ${LIB} 25 gcc ${CFLAGS} -o st_convert st2pl.o ${LIB}
26 26
27showst: showst.o eheap.o load.o ${LIB} 27st_show: showst.o eheap.o load.o ${LIB}
28 gcc ${CFLAGS} -o showst showst.o ${LIB} 28 gcc ${CFLAGS} -o st_show showst.o ${LIB}
29 29
30clean: 30clean:
31 rm -f *.o ${APPS} 31 rm -f *.o ${APPS}
diff --git a/st_draw b/st_draw
index 55a97f2..5dc2153 100755
--- a/st_draw
+++ b/st_draw
@@ -1,4 +1,5 @@
1#!/bin/bash 1#!/bin/bash
2#
2# st_draw --- Draw binary sched_trace traces as nicely formatted PDFs. 3# st_draw --- Draw binary sched_trace traces as nicely formatted PDFs.
3# Copyright (C) 2008 B. Brandenburg, <bbb@cs.unc.edu> 4# Copyright (C) 2008 B. Brandenburg, <bbb@cs.unc.edu>
4# 5#
@@ -17,8 +18,8 @@
17# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 19
19 20
20ST_SHOW=showst 21ST_SHOW=st_show
21ST2PL=st2pl 22ST2PL=st_convert
22ASY=asy 23ASY=asy
23SHOW_PDF=evince 24SHOW_PDF=evince
24 25