X-Git-Url: http://git.mutantstargoat.com/user/nuclear/?a=blobdiff_plain;f=Makefile;fp=Makefile;h=442fc10504da393ad3e3d21a82c07e19e1ceec14;hb=2f4fb7c15c5017546238241ea318b16b9a032c52;hp=05eac20427972082c58fde8c2405ae6c3b53e636;hpb=8091cf11d15e1363d8d608fb640f4f12b0887e52;p=oftp diff --git a/Makefile b/Makefile index 05eac20..442fc10 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,12 @@ -obj = main.obj tgfx.obj tui.obj darray.obj util.obj input.obj +obj = main.obj tgfx.obj tui.obj tui_list.obj darray.obj util.obj input.obj ftp.obj bin = oftp.exe !ifdef __UNIX__ -incpath = -Isrc -Isrc/dos +incpath = -Isrc -Isrc/dos -I$(WATT_ROOT)/inc +libs = library $(WATT_ROOT)/lib/wattcpwf.lib !else -incpath = -Isrc -Isrc\dos +incpath = -Isrc -Isrc\dos -I$(%WATT_ROOT)\inc +libs = library $(%WATT_ROOT)\lib\wattcpwf.lib !endif #opt = -otexan @@ -14,6 +16,7 @@ dbg = -d3 CC = wcc386 LD = wlink CFLAGS = $(warn) $(dbg) $(opt) $(incpath) $(def) -zq -bt=dos +LDFLAGS = $(libs) $(bin): $(obj) %write objects.lnk $(obj) @@ -31,4 +34,5 @@ $(bin): $(obj) clean: .symbolic del *.obj del objects.lnk + del oftp.map del $(bin)