blob: 1aab253f0e52aea6b1a8311e2ea1ba8db8a05503 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Project: Scriver_a
CPP = g++.exe
CC = gcc.exe
WINDRES = windres.exe
RM = rm
UPX = upx -9 -q --compress-icons=0
SRC = cmdlist.c globals.c infobar.c input.c msgdialog.c msglog.c msgoptions.c msgs.c msgtimedout.c msgwindow.c richutil.c srmm.c sendqueue.c statusicon.c utils.c chat/clist.c chat/colorchooser.c chat/log.c chat/main.c chat/manager.c chat/message.c chat/options.c chat/services.c chat/tools.c chat/window.c
RES = resource.res
OBJ = $(SRC:.c=.o) $(RES)
INCS = -I"../../include" -I"../../include/msapi"
BIN = scriver.dll
CFLAGS = $(INCS) -DBUILDING_DLL=1 -fexpensive-optimizations -O3 -Os -fno-exceptions -Wno-error -Wall
CXXFLAGS = $(INCS) -DBUILDING_DLL=1 -fexpensive-optimizations -O3 -Os -fno-exceptions -Wno-error -Wall
# -save-temps
LIBS = -lshlwapi -lversion -lwsock32 -lole32 -lcomctl32 -luuid -loleaut32
LFLAGS = -s -mdll -mwindows --add-stdcall-alias
#LFLAGS = -mdll -mwindows -Wl,-Map,ieview.map --no-export-all-symbols --add-stdcall-alias -g3
RCFLAGS = -J rc -O coff
# --add-stdcall-alias -s --no-export-all-symbols
.PHONY: all all-before all-after clean clean-custom
all: all-before $(BIN) all-after
ifdef PACK
$(UPX) $(BIN)
endif
clean: clean-custom
$(RM) -f $(OBJ) $(BIN)
depend :
$(CPP) -MM $(CFLAGS) $(SRC)>MakefileA.dep
$(RES): $(RES:.res=.rc) resource.h
$(WINDRES) $(RCFLAGS) -i $(RES:.res=.rc) -o $(RES)
$(BIN): $(OBJ)
$(CPP) $(CFLAGS) $(OBJ) $(LIBS) $(LFLAGS) -o $(BIN) -Wl
-include MakefileA.dep
|