You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
408 B
18 lines
408 B
INCLUDES = $(all_includes)
|
|
|
|
check_PROGRAMS = server test.class
|
|
|
|
server_SOURCES = main.cpp test.skel test_impl.cpp
|
|
server_LDFLAGS = $(all_libraries)
|
|
server_LDADD = $(LIB_TDECORE)
|
|
|
|
# test_class_SOURCES = test.java
|
|
|
|
test.class: test.java test_stub.java
|
|
$(JAVAC) -classpath $(kde_libraries)/java:. test.java
|
|
|
|
test_stub.java: test.h test.kidl
|
|
dcopidl2java test.kidl
|
|
|
|
CLEANFILES = test_stub.java test_stub.class
|