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
|