Differences From Artifact [3d1998ff41]:
- File Makefile — part of check-in [6d268ced53] at 2014-05-14 21:20:55 on branch trunk — Initial import (user: js, size: 273) [annotate] [blame] [check-ins using]
To Artifact [592dac6b06]:
- File Makefile — part of check-in [34a019c3c5] at 2017-01-22 15:56:43 on branch trunk — Properly declare dependencies in the Makefile (user: js, size: 340) [annotate] [blame] [check-ins using]
1 2 3 4 5 6 7 8 9 10 11 12 13 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | + + + | CC ?= clang CFLAGS ?= -Weverything -std=c11 ## For C11 #CFLAGS += -DTRYCATCH_THREAD_LOCAL=_Thread_local ## For GCC / Clang #CFLAGS += -DTRYCATCH_THREAD_LOCAL=__thread libtrycatch.a: trycatch.o ar cr $@ $< example: example.o libtrycatch.a ${CC} -L. -ltrycatch -o $@ $< trycatch.o: trycatch.c trycatch.h example.o: example.c trycatch.h |