blob: 25ac012f768b8dd685f3083ca13c99ab4a1a8d90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# -*- make -*-
# Default value so one can compile this standalone
TOPDIR ?= ..
include ./local.mk
include $(TOPDIR)/common.mk
dest_dir = $(DESTDIR)$(PREFIX)/$(PACKAGE_DIR)
include $(MAKEINCLUDE_DIR)/pic_pdf_compatible.mk
include $(MAKEINCLUDE_DIR)/eps.mk
include $(MAKEINCLUDE_DIR)/pic_svg.mk
include $(MAKEINCLUDE_DIR)/gnuplot_eps.mk
include $(MAKEINCLUDE_DIR)/gnuplot_ltx_eps.mk
include $(MAKEINCLUDE_DIR)/circuit_eps.mk
include $(MAKEINCLUDE_DIR)/subdirs.mk
include $(MAKEINCLUDE_DIR)/dest_dirs.mk
.DEFAULT_GOAL := all
all: compile install
compile: subdirs $(REQUIRED_TARGETS)
clean: subdirs $(CLEAN_TARGETS)
real_clean: subdirs clean $(REAL_CLEAN_TARGETS)
install: subdirs $(INSTALL_TARGETS)
zip:
#do nothing
copy2dropbox:
#do nothing
|