Blame sofort/core/_infer/infer_modern.mk

3c751e
# infer_modern.mk: modern make target- and inference rules.
3c751e
# this file is covered by COPYING.SOFORT.
3c751e
3c751e
src/%.ao: 	$(SOURCE_DIR)/src/%.c
3c751e
		$(CC) -c -o $@ $< $(CFLAGS_APP)
3c751e
3c751e
src/%.lo: 	$(SOURCE_DIR)/src/%.c
3c751e
		$(CC) -c -o $@ $< $(CFLAGS_SHARED)
3c751e
3c751e
src/%.o: 	$(SOURCE_DIR)/src/%.c
3c751e
		$(CC) -c -o $@ $< $(CFLAGS_STATIC)
3c751e
3c751e
$(SHARED_LIB):
3c751e
		$(SHARED_LIB_CMD) $@ $^ $(SHARED_LIB_LDFLAGS) $(LDFLAGS_IMPLIB)
3c751e
3c751e
lib/%$(OS_ARCHIVE_EXT):
3c751e
		mkdir -p lib
3c751e
		rm -f $@
3c751e
		$(AR) rcs $@ $^
5a1203
5a1203
srcs.tag:
5a1203
		touch $@