blob: a4ae485594adb15802fc86c651bd0abfaadb1ad1 (
plain)
1
2
3
4
5
6
7
8
9
10
|
DEPLIBS = $(DEPKLIB)
LOCAL_LIBRARIES = $(KLIB)
CLIENTOBJS= sclient.o
SERVEROBJS= sserver.o
all:: sclient sserver
NormalProgramTarget(sclient,$(CLIENTOBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),)
NormalProgramTarget(sserver,$(SERVEROBJS),$(DEPLIBS),$(LOCAL_LIBRARIES),)
|