Subversion Repositories Tewi

Rev

Rev 244 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
43 nishi 1
/* $Id: option.c 249 2024-10-03 20:59:55Z nishi $ */
2
/* This file is not intended to be in the server. */
3
 
4
#include <stdio.h>
5
#include <string.h>
6
 
7
#include "../config.h"
8
 
9
int main(int argc, char** argv) {
10
	if(argc < 3) {
11
		return 1;
12
	}
13
	if(strcmp(argv[1], "cflags") == 0) {
14
#ifndef NO_SSL
15
		printf("-I %s/openssl/include", argv[2]);
16
#endif
244 nishi 17
#ifdef BUILD_GUI
18
		if(strcmp(argv[3], "WINDOWS_WATCOM") == 0){
19
			printf(" -b nt_win");
20
		}else if(strcmp(argv[3], "WINDOWS") == 0){
21
			printf(" -mwindows");
22
		}
23
#endif
43 nishi 24
	} else if(strcmp(argv[1], "ldflags") == 0) {
25
#ifndef NO_SSL
44 nishi 26
		printf("-L %s/openssl/lib", argv[2]);
43 nishi 27
#endif
244 nishi 28
#ifdef BUILD_GUI
29
		if(strcmp(argv[3], "WINDOWS_WATCOM") == 0){
30
			printf(" -b nt_win");
31
		}else if(strcmp(argv[3], "WINDOWS") == 0){
32
			printf(" -mwindows");
33
		}
34
#endif
43 nishi 35
	} else if(strcmp(argv[1], "objs") == 0) {
36
#ifndef NO_SSL
244 nishi 37
		printf("ssl.%s", argv[4]);
43 nishi 38
#endif
244 nishi 39
#ifdef BUILD_GUI
40
		if(strcmp(argv[3], "WINDOWS") == 0 || strcmp(argv[3], "WINDOWS_WATCOM") == 0){
41
			printf(" gui.%s", argv[4]);
42
		}
43
#endif
43 nishi 44
	} else if(strcmp(argv[1], "libs") == 0) {
45
#ifndef NO_SSL
46
		printf("-lssl -lcrypto");
47
#endif
240 nishi 48
		if(strcmp(argv[3], "WINDOWS") == 0){
49
#ifdef USE_WINSOCK1
50
			printf(" -lwsock32");
51
#else
52
			printf(" -lws2_32");
53
#endif
244 nishi 54
#ifdef BUILD_GUI
55
			printf(" -lcomctl32");
249 nishi 56
			printf(" -luser32");
244 nishi 57
#endif
240 nishi 58
		}else if(strcmp(argv[3], "WINDOWS_WATCOM") == 0){
59
#ifdef USE_WINSOCK1
60
			printf(" wsock32.lib");
61
#else
62
			printf(" ws2_32.lib");
63
#endif
244 nishi 64
#ifdef BUILD_GUI
65
			printf(" comctl32.lib");
249 nishi 66
			printf(" user32.lib");
244 nishi 67
#endif
240 nishi 68
		}
43 nishi 69
	}
70
	printf("\n");
168 nishi 71
	return 0;
43 nishi 72
}