source: tags/arb_5.5/PROBE_COM/Makefile

Last change on this file was 8525, checked in by westram, 12 years ago

(partial) merge from trunk [8322] [8324] [8325] [8326] [8327]

  • clang-enable
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 881 bytes
Line 
1# The file, where all structures are described
2MAIN_SOURCE := PT.aisc
3
4# Your own server functions
5PRIVATE_SERVER_OBJECTS := PT_extern.o
6
7# Public server/client sources (needed for dependencies)
8PUBLIC_SOURCES := $(wildcard C/*.c)
9
10# Do you want to create save and load
11AISC_SAVE := NO
12
13# C++ Compiler
14COMPILER := $(CPP) -x c++ $(cflags) -I$(ARBHOME)/INCLUDE
15CLIENTCOMPILER := $(COMPILER)
16
17# AISC dependencies
18AISC_COMPILER=../MAKEBIN/aisc
19AISC_DEPENDS = $(wildcard AISC/*.pa) $(AISC_COMPILER)
20
21include AISC/export2sub
22
23server.a:       $(MAIN_SOURCE)  $(PRIVATE_SERVER_OBJECTS:.o=.c) $(PUBLIC_SOURCES) $(AISC_DEPENDS)
24                @$(MAKE) -r -f AISC/Makefile
25
26depends:
27                @$(MAKE) -r -f AISC/Makefile pregenerate
28
29clean:
30                @$(MAKE) -r -f AISC/Makefile clean
31
32# DO NOT DELETE
33
34# Do not add dependencies manually - use 'make depend' in $ARBHOME
35# For formatting issues see SOURCE_TOOLS/fix_depends.pl
Note: See TracBrowser for help on using the repository browser.