source: tags/initial/PROBE_COM/Makefile

Last change on this file was 2, checked in by oldcode, 24 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 687 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# Do you want to create save and load
8AISC_SAVE       = NO
9
10COMPILER = $(CPP) $(cflags)
11CLIENTCOMPILER = $(CPP) $(cflags)
12
13# DONT CHANGE THE NEXT LINES
14
15server.a:       $(MAIN_SOURCE)  $(PRIVATE_SERVER_OBJECTS:.o=.c)
16        $(MAKE) -r $(makeflags) -f AISC/Makefile \
17                "MAIN_SOURCE=$(MAIN_SOURCE)" \
18                "PRIVATE_SERVER_OBJECTS = $(PRIVATE_SERVER_OBJECTS)" \
19                "AISC_SAVE = $(AISC_SAVE)" "COMPILER = $(COMPILER)" \
20                "CLIENTCOMPILER = $(CLIENTCOMPILER)" "AR = $(AR)"
21
22depend:
23        @echo "MGR COM no automatic dependencies"
24
25clean:
26        $(MAKE) $(makeflags) -f AISC/Makefile clean
Note: See TracBrowser for help on using the repository browser.