Skip to content

Commit

Permalink
Hack in direct memory dumping.
Browse files Browse the repository at this point in the history
Will need to clean up and patch libticalcs so that I don't need to
duplicate its internal functions here just for it to work. As well
as remove the files taken from libticalcs once those functions are
exported.
  • Loading branch information
Jonimoose committed Apr 11, 2012
1 parent de4d3bf commit f7b12b6
Show file tree
Hide file tree
Showing 7 changed files with 2,232 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/Makefile.in
Expand Up @@ -29,7 +29,8 @@ programs = tiget@EXEEXT@ \
tils@EXEEXT@ \
tiput@EXEEXT@ \
tirm@EXEEXT@ \
tiscr@EXEEXT@
tiscr@EXEEXT@ \
tidump@EXEEXT@

all: $(programs)

Expand All @@ -45,7 +46,7 @@ uninstall:
done

common.@OBJEXT@: common.c titools.h
$(compile) -c $(srcdir)/common.c
$(compile) -c $(srcdir)/common.c $(srcdir)/dbus_pkt.c $(srcdir)/cmd73.c

glob.@OBJEXT@: glob.c titools.h
$(compile) -c $(srcdir)/glob.c
Expand Down Expand Up @@ -75,6 +76,11 @@ tiput@EXEEXT@: tiput.@OBJEXT@ common.@OBJEXT@
tiput.@OBJEXT@: tiput.c titools.h
$(compile) -c $(srcdir)/tiput.c

tidump@EXEEXT@: tidump.@OBJEXT@ common.@OBJEXT@
$(link) -o tidump@EXEEXT@ tidump.@OBJEXT@ common.@OBJEXT@ dbus_pkt.o cmd73.o $(libs)
tidump.@OBJEXT@: tidump.c titools.h dbus_pkt.h cmd73.h
$(compile) -c $(srcdir)/tidump.c

tirm@EXEEXT@: tirm.@OBJEXT@ common.@OBJEXT@ glob.@OBJEXT@
$(link) -o tirm@EXEEXT@ tirm.@OBJEXT@ common.@OBJEXT@ glob.@OBJEXT@ $(libs)
tirm.@OBJEXT@: tirm.c titools.h
Expand Down

0 comments on commit f7b12b6

Please sign in to comment.