diff options
author | jsorg71 <jsorg71> | 2007-09-04 02:40:55 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2007-09-04 02:40:55 +0000 |
commit | 02adea2aecd911d9ce60e30951d3ce1821a02cea (patch) | |
tree | f7620fda2d36ade78c5df1ec11cffd33e4a988a9 /fontdump/Makefile | |
parent | 930160ea505fdbc4f4a1faf3399cdf2022150ad9 (diff) | |
download | xrdp-proprietary-02adea2aecd911d9ce60e30951d3ce1821a02cea.tar.gz xrdp-proprietary-02adea2aecd911d9ce60e30951d3ce1821a02cea.zip |
added files
Diffstat (limited to 'fontdump/Makefile')
-rwxr-xr-x | fontdump/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/fontdump/Makefile b/fontdump/Makefile new file mode 100755 index 00000000..0a742582 --- /dev/null +++ b/fontdump/Makefile @@ -0,0 +1,17 @@ + +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 |