mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-05 02:34:18 +00:00
22 lines
267 B
Makefile
Executable File
22 lines
267 B
Makefile
Executable File
SRCDIR=../../src
|
|
CPPFLAGS = -I$(SRCDIR)
|
|
|
|
PROGS = other1
|
|
all: $(PROGS) run_tests
|
|
|
|
tpl.c:
|
|
cp $(SRCDIR)/tpl.c .
|
|
|
|
other1: other1.o tpl.o
|
|
g++ -o other1 other1.o tpl.o
|
|
|
|
|
|
.PHONY: clean run_tests
|
|
|
|
clean:
|
|
rm -f *.o $(PROGS) *.out
|
|
rm -f tpl.c
|
|
|
|
run_tests:
|
|
perl ./do_tests
|