Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
Makefile 241 B
#
# Makefile for sflphone.
# (c) 2004 Savoir-faire Linux inc.
# Author: Laurielle Lea (laurielle.lea@savoirfairelinux.com)
#
all:
	cd src; make

install:
	cd src; make install

uninstall:
	cd src; make uninstall

clean:
	cd src; make clean