File: Makefile.mak

package info (click to toggle)
open-jtalk 1.11-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 117,352 kB
  • sloc: cpp: 165,033; ansic: 16,087; sh: 4,173; makefile: 291
file content (19 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

CC = cl

CFLAGS = /O2 /Ob2 /Oi /Ot /Oy /GT /GL /TC /I ../njd /D CHARSET_SHIFT_JIS
LFLAGS = /LTCG

CORES = njd_set_accent_phrase.obj

all: njd_set_accent_phrase.lib

njd_set_accent_phrase.lib: $(CORES)
	lib $(LFLAGS) /OUT:$@ $(CORES)

.c.obj:
	$(CC) $(CFLAGS) /c $<

clean:
	del *.lib
	del *.obj