diff options
author | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
---|---|---|
committer | Norbert Preining <norbert@preining.info> | 2019-09-02 13:46:59 +0900 |
commit | e0c6872cf40896c7be36b11dcc744620f10adf1d (patch) | |
tree | 60335e10d2f4354b0674ec22d7b53f0f8abee672 /support/asc2tex2/asc2tex.mak |
Initial commit
Diffstat (limited to 'support/asc2tex2/asc2tex.mak')
-rw-r--r-- | support/asc2tex2/asc2tex.mak | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/support/asc2tex2/asc2tex.mak b/support/asc2tex2/asc2tex.mak new file mode 100644 index 0000000000..1ac24c7e41 --- /dev/null +++ b/support/asc2tex2/asc2tex.mak @@ -0,0 +1,35 @@ +PROJ =ASC2TEX +DEBUG =0 +CC =qcl +CFLAGS_G = /AH /W2 /Ze +CFLAGS_D = /Zd /Zr /Gi$(PROJ).mdt /Od +CFLAGS_R = /Od /DNDEBUG +CFLAGS =$(CFLAGS_G) $(CFLAGS_R) +LFLAGS_G = /CP:0xffff /NOI /SE:0x80 /ST:0x4000 +LFLAGS_D = +LFLAGS_R = +LFLAGS =$(LFLAGS_G) $(LFLAGS_R) +RUNFLAGS =otto +OBJS_EXT = +LIBS_EXT = + +all: $(PROJ).exe + +asc2tex.obj: asc2tex.c + +string2.obj: string2.c + +$(PROJ).exe: asc2tex.obj string2.obj $(OBJS_EXT) + echo >NUL @<<$(PROJ).crf +asc2tex.obj + +string2.obj + +$(OBJS_EXT) +$(PROJ).exe + +$(LIBS_EXT); +<< + link $(LFLAGS) @$(PROJ).crf + +run: $(PROJ).exe + $(PROJ) $(RUNFLAGS) + |