source: tags/cvs_2_svn/NAMES_COM/Makefile

Last change on this file was 5228, checked in by westram, 17 years ago
  • chaged forwarded variables for new makefile
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1018 bytes
Line 
1# The file, where all structures are described
2MAIN_SOURCE = names.aisc
3
4# Your own server functions
5PRIVATE_SERVER_OBJECTS = names_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       = YES
12COMPILER = $(CPP) $(cflags) -I$(ARBHOME)/INCLUDE
13CLIENTCOMPILER = $(COMPILER)
14
15# DONT CHANGE THE NEXT LINES
16server.a: $(MAIN_SOURCE) $(PRIVATE_SERVER_OBJECTS:.o=.c) $(PUBLIC_SOURCES)
17        $(MAKE) -r $(makeflags) -f AISC/Makefile \
18                "AISC_SAVE=$(AISC_SAVE)" \
19                "AUTODEPENDS=$(AUTODEPENDS)" \
20                "CLIENTCOMPILER=$(CLIENTCOMPILER)" \
21                "COMPILER=$(COMPILER)" \
22                "LINK_STATIC_LIB=$(LINK_STATIC_LIB)" \
23                "MAIN_SOURCE=$(MAIN_SOURCE)" \
24                "PRIVATE_SERVER_OBJECTS = $(PRIVATE_SERVER_OBJECTS)" \
25
26
27depends:
28#       $(MAKE) -r -f AISC/Makefile depends
29
30clean:
31        $(MAKE) $(makeflags) -f AISC/Makefile clean
32
33# DO NOT DELETE
34
35# Do not add dependencies manually - use 'make depend' in $ARBHOME
36# For formatting issues see SOURCE_TOOLS/fix_depends.pl
Note: See TracBrowser for help on using the repository browser.