| Line | |
|---|
| 1 | # The file, where all structures are described |
|---|
| 2 | MAIN_SOURCE = names.aisc |
|---|
| 3 | |
|---|
| 4 | # Your own server functions |
|---|
| 5 | PRIVATE_SERVER_OBJECTS = names_extern.o |
|---|
| 6 | |
|---|
| 7 | # Public server/client sources (needed for dependencies) |
|---|
| 8 | PUBLIC_SOURCES = $(wildcard C/*.c) |
|---|
| 9 | |
|---|
| 10 | # Do you want to create save and load |
|---|
| 11 | AISC_SAVE = YES |
|---|
| 12 | |
|---|
| 13 | # C++ Compiler |
|---|
| 14 | COMPILER = $(CPP) -x c++ $(cflags) -I$(ARBHOME)/INCLUDE |
|---|
| 15 | CLIENTCOMPILER = $(COMPILER) |
|---|
| 16 | |
|---|
| 17 | # AISC dependencies |
|---|
| 18 | AISC_COMPILER=../MAKEBIN/aisc |
|---|
| 19 | AISC_DEPENDS = $(wildcard AISC/*.pa) $(AISC_COMPILER) |
|---|
| 20 | |
|---|
| 21 | include AISC/export2sub |
|---|
| 22 | |
|---|
| 23 | server.a: $(MAIN_SOURCE) $(PRIVATE_SERVER_OBJECTS:.o=.c) $(PUBLIC_SOURCES) $(AISC_DEPENDS) |
|---|
| 24 | @$(MAKE) -r -f AISC/Makefile |
|---|
| 25 | |
|---|
| 26 | depends: |
|---|
| 27 | @$(MAKE) -r -f AISC/Makefile pregenerate |
|---|
| 28 | |
|---|
| 29 | clean: |
|---|
| 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.