38 lines
923 B
Makefile
38 lines
923 B
Makefile
#****************************************************************************
|
|
# Makefile for ftsd ( File TranSfer Daemon)
|
|
# -----------------------------------------
|
|
#
|
|
# begin : 2010/02/25
|
|
# copyright : (C) 2005 SolutionBox Inc.
|
|
# author : Service 1 Team
|
|
# email : svc1@solbox.com
|
|
# version : 1.0
|
|
#
|
|
# CopyRight(C) 2005 SolutionBox Inc. All Rights reserved.
|
|
# Redistribution and use in source and binary forms, with or with out
|
|
# modification, are not permitted in outside of SolutionBox Inc.
|
|
#*****************************************************************************
|
|
|
|
SUBDIRS = lib src interface/sample
|
|
|
|
.PHONY: all $(SUBDIRS)
|
|
|
|
|
|
all: $(SUBDIRS)
|
|
sync;
|
|
|
|
|
|
$(SUBDIRS):
|
|
$(MAKE) all -C $@
|
|
|
|
|
|
install:
|
|
@for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) install); done
|
|
|
|
|
|
clean:
|
|
@for dir in $(SUBDIRS); do (cd $$dir; $(MAKE) clean); done
|
|
|
|
|
|
# End of Makefile
|