CC = gcc -std=c99 -pedantic -Wall -O2 DEST = ../../bin/ulaw OBJS = ulaw.o g711.o all: ulaw ulaw: $(OBJS) $(CC) -o ulaw $(OBJS) ulaw.o: ulaw.c g711.h g711.o: g711.c g711.h install: ulaw rm -f $(DEST) mv ulaw $(DEST) chown root:root $(DEST) chmod 111 $(DEST) clean: rm -f a.out core $(OBJS) ulaw