Check-in [aa32555a0a]
Overview
Comment:Additional cleanup
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: aa32555a0ac10cb6b2ee8feb1404c1c6d73be2b174e5aec330facb451d9b5cb6
User & Date: rkeene on 2019-06-22 22:15:23
Other Links: manifest | tags
Context
2019-09-13
16:02
Added better error reporting in the core and as part of the ABI check-in: 149aa89b7d user: rkeene tags: trunk
2019-06-22
22:15
Additional cleanup check-in: aa32555a0a user: rkeene tags: trunk
2019-05-22
14:28
Improved minirivet to use lists check-in: 9b0190676f user: rkeene tags: trunk
Changes

Modified Makefile from [beb49ead95] to [5600193367].

15
16
17
18
19
20
21

22
23
24
25
26
example.so: example.o Makefile
	$(CC) $(CFLAGS) $(LDFLAGS) -shared -o example.so example.o $(LIBS)

test: example.so
	echo 'if {[catch { load ./example.so Xvfs_example; source //xvfs:/example/main.tcl }]} { puts stderr $$::errorInfo; exit 1 }; exit 0' | tclsh

clean:

	rm -f example.so example.o example.c

distclean: clean

.PHONY: all clean distclean test







>
|




15
16
17
18
19
20
21
22
23
24
25
26
27
example.so: example.o Makefile
	$(CC) $(CFLAGS) $(LDFLAGS) -shared -o example.so example.o $(LIBS)

test: example.so
	echo 'if {[catch { load ./example.so Xvfs_example; source //xvfs:/example/main.tcl }]} { puts stderr $$::errorInfo; exit 1 }; exit 0' | tclsh

clean:
	rm -f example.c example.c.new
	rm -f example.so example.o

distclean: clean

.PHONY: all clean distclean test