2012-03-31 00:53:51 +03:00
|
|
|
#
|
|
|
|
# Makefile - Expanded component view generator
|
|
|
|
#
|
|
|
|
# Copyright 2012 by Werner Almesberger
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
|
|
|
|
OBJS = genex.o comp.o libs.o pdf.o
|
|
|
|
|
2012-04-17 23:14:24 +03:00
|
|
|
SHELL = /bin/bash
|
|
|
|
CFLAGS = -Wall -g
|
|
|
|
|
2012-03-31 00:53:51 +03:00
|
|
|
CC_normal := $(CC)
|
|
|
|
DEPEND_normal := $(CPP) $(CFLAGS) -MM -MG
|
|
|
|
|
|
|
|
CC_quiet = @echo " CC " $@ && $(CC_normal)
|
|
|
|
GEN_quiet = @echo " GENERATE " $@ &&
|
|
|
|
DEPEND_quiet = @$(DEPEND_normal)
|
|
|
|
|
|
|
|
ifeq ($(V),1)
|
|
|
|
CC = $(CC_normal)
|
|
|
|
GEN =
|
|
|
|
DEPEND = $(DEPEND_normal)
|
|
|
|
else
|
|
|
|
CC = $(CC_quiet)
|
|
|
|
GEN = $(GEN_quiet)
|
|
|
|
DEPEND = $(DEPEND_quiet)
|
|
|
|
endif
|
|
|
|
|
2012-04-17 23:10:03 +03:00
|
|
|
.PHONY: all clean spotless
|
2012-03-31 00:53:51 +03:00
|
|
|
|
|
|
|
all: genex
|
|
|
|
|
|
|
|
genex: $(OBJS)
|
|
|
|
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDLIBS)
|
|
|
|
|
2012-04-17 23:14:24 +03:00
|
|
|
%.o: %.c
|
|
|
|
$(CC) -c $(CFLAGS) $*.c -o $*.o
|
|
|
|
$(DEPEND) $*.c | \
|
|
|
|
sed -e \
|
|
|
|
'/^\(.*:\)\? */{p;s///;s/ *\\\?$$/ /;s/ */:\n/g;H;}' \
|
|
|
|
-e '$${g;p;}' -e d >$*.d; \
|
|
|
|
[ "$${PIPESTATUS[*]}" = "0 0" ] || { rm -f $*.d; exit 1; }
|
|
|
|
|
|
|
|
-include $(OBJS:.o=.d)
|
|
|
|
|
2012-03-31 00:53:51 +03:00
|
|
|
clean:
|
2012-04-17 23:14:24 +03:00
|
|
|
rm -f $(OBJS) $(OBJS:.o=.d)
|
2012-04-17 23:10:03 +03:00
|
|
|
|
|
|
|
spotless: clean
|
|
|
|
rm -f genex
|