23 lines
270 B
Makefile
Executable File
23 lines
270 B
Makefile
Executable File
include $(MAKEDIR)/Makefile.base
|
|
|
|
PROJECTS := source/c
|
|
|
|
LIBFILE := libastronomy.a
|
|
COPYTO := ../../sdk/lib
|
|
|
|
ifeq (Darwin,$(SYS_NAME))
|
|
endif
|
|
|
|
ifeq (Linux,$(SYS_NAME))
|
|
endif
|
|
|
|
ifeq (Android,$(SYS_NAME))
|
|
endif
|
|
|
|
ifeq (iOS,$(SYS_NAME))
|
|
endif
|
|
|
|
include $(MAKEDIR)/Makefile.lib
|
|
|
|
|