This repository has been archived on 2026-05-18. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
exclib/Makefile

16 lines
250 B
Makefile

CC=gcc
LD=gcc
OBJECTS=exclib.o exception_test.o
all: exception_test
%.o: %.c
$(CC) -c -o $@ $(CFLAGS) -rdynamic -ggdb -gstabs $<
exception_test: $(OBJECTS)
$(LD) -o exception_test $(OBJECTS)
.PHONY: clean
clean:
rm -f *.o
rm -f exception_test