You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
314 B
18 lines
314 B
|
|
OBJS = fontdump.obj os_calls.obj
|
|
|
|
#CFLAGS = -O2 -I../common
|
|
CFLAGS = -O2 -I../common -DUNICODE -D_UNICODE
|
|
LDFLAGS = -W -efontdump.exe
|
|
|
|
all: fontdump1
|
|
|
|
fontdump1: $(OBJS)
|
|
$(CC) $(LDFLAGS) $(OBJS)
|
|
|
|
clean:
|
|
del $(OBJS) fontdump.exe *.tds
|
|
|
|
os_calls.obj: ../common/os_calls.c
|
|
$(CC) $(CFLAGS) -c ../common/os_calls.c
|