# The file, where all structures are described MAIN_SOURCE = PT.aisc # Your own server functions PRIVATE_SERVER_OBJECTS = PT_extern.o # Public server/client sources (needed for dependencies) PUBLIC_SOURCES = $(wildcard C/*.c) # Do you want to create save and load AISC_SAVE = NO COMPILER = $(CPP) $(cflags) -I$(ARBHOME)/INCLUDE CLIENTCOMPILER = $(COMPILER) # DONT CHANGE THE NEXT LINES server.a: $(MAIN_SOURCE) $(PRIVATE_SERVER_OBJECTS:.o=.c) $(PUBLIC_SOURCES) $(MAKE) -r $(makeflags) -f AISC/Makefile \ "AISC_SAVE=$(AISC_SAVE)" \ "CLIENTCOMPILER=$(CLIENTCOMPILER)" \ "COMPILER=$(COMPILER)" \ "LINK_STATIC_LIB=$(LINK_STATIC_LIB)" \ "MAIN_SOURCE=$(MAIN_SOURCE)" \ "PRIVATE_SERVER_OBJECTS=$(PRIVATE_SERVER_OBJECTS)" \ depends: # $(MAKE) -r -f AISC/Makefile depends # @echo "no automatic dependencies for PROBE_COM - skipped" clean: $(MAKE) $(makeflags) -f AISC/Makefile clean # DO NOT DELETE # Do not add dependencies manually - use 'make depend' in $ARBHOME # For formatting issues see SOURCE_TOOLS/fix_depends.pl