computing-systems-212 / Lab 2: Heap Allocation + Management / task3 / Makefile
Makefile
Raw
CFLAGS=-g
LIBS=lib212alloc.a

%.o: %.c
	$(CC) $(CFLAGS) -c -o $@ $<

cpen212trace: cpen212alloc.o
	$(CC) $(LDFLAGS) -o $@ $^ $(LIBS)

.PHONY: clean
clean:
	$(RM) *.o cpen212trace