source: branches/common_functions/makefile@ 222

Last change on this file since 222 was 133, checked in by gyoung, 21 months ago

Merge Lar's 2.9 branch into the trunk

File size: 515 bytes
Line 
1# Makefile for common functions
2
3#include ../make.inc
4
5CC = icc
6LIB_DIR = D:/usr/lib
7CPPFLAGS = -Ge- /Gm+ -G4 -Gl /O+ -Oc+ -Ol
8#CPPFLAGS = -O -Zomf -Zcrtdll -s
9INC = ../include
10DEFS =
11PROGS =
12ODIR = .
13CPPDIR = .
14HELPERDIR = ..\launch_helper
15RESDIR = ..\res\$(LANGUAGE)
16OBJECTS = $(HELPERDIR)\message.obj $(HELPERDIR)\helper.obj
17
18.PHONY: clean cleaner
19
20all:
21 cd ../. && make
22
23clean:
24
25cleaner:
26 -rm *.*~
27 -cd ./include && rm *.*~
28 -rm *.flc
29
30
31
Note: See TracBrowser for help on using the repository browser.