File: Makefile.in

package info (click to toggle)
icomlib 1.0.1-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,716 kB
  • ctags: 1,363
  • sloc: cpp: 4,848; makefile: 533; sh: 181; ansic: 145
file content (22 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PCOMMHEAD	= $(SRCDIR)/src/pcomm/pcomm.h \
		  $(SRCDIR)/src/pcomm/pcrdef.h

PCPHEAD		= $(SRCDIR)/src/pcp/pcp.h

PLOGHEAD	= $(SRCDIR)/src/plog/plog.h

all: clean
	ln -f $(PLOGHEAD) .
	ln -f $(PCOMMHEAD) .
	ln -f $(PCPHEAD) .

clean:
	rm -f core *~ *.h *.cpp

testvar:
	@echo "****$(PWD)****"
	@echo "*** LIBS   $(LIBS)"
	@echo "*** SRCDIR $(SRCDIR)"
	@echo "*** $(PCOMMHEAD) "
	@echo "*** $(PCPHEAD) "
	@echo "*** $(PLOGHEAD) "