1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-08 03:00:36 +00:00
2012-09-13 15:01:01 -05:00

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