oga's tools
リビジョン | 0c25306bdf2c6d850149dc89e7d702c4f03a90af (tree) |
---|---|
日時 | 2023-08-22 07:17:26 |
作者 | hyperoga <hyperoga@gmai...> |
コミッター | hyperoga |
add webget and netpf_send
@@ -52,7 +52,7 @@ TARGETS = $(VP)/age.exe $(VP)/cal.exe $(VP)/cgrep.exe $(VP)/csv2nocr.exe \ | ||
52 | 52 | $(VP)/getsysm.exe $(VP)/midiapi.exe $(VP)/play.exe $(VP)/sendevt.exe \ |
53 | 53 | $(VP)/shutdown.exe $(VP)/sysperf.exe $(VP)/winmidisample.exe \ |
54 | 54 | $(VP)/dgclient.exe $(VP)/dgserver.exe $(VP)/netpf.exe \ |
55 | - $(VP)/netpf_send.exe | |
55 | + $(VP)/netpf_send.exe $(VP)/webget.exe | |
56 | 56 | |
57 | 57 | TARGETS_MS = $(VP)/cpuid.exe $(VP)/ctrain.exe $(VP)/df.exe $(VP)/lsc.exe $(VP)/miscclient.exe $(VP)/miscserver.exe $(VP)/sndtimer.exe $(VP)/sysinfd.exe $(VP)/regsv.exe $(VP)/sysinfd_win.exe $(VP)/pcap_test.exe $(VP)/joytest.exe $(VP)/icmpsnd.exe $(VP)/getver.exe $(VP)/dxshow.exe $(VP)/clip.exe $(VP)/readevt.exe $(VP)/midic.exe |
58 | 58 |
@@ -397,15 +397,18 @@ $(VP)/wavcut.exe : wavcut.c | ||
397 | 397 | $(VP)/wavcut2.exe : wavcut2.c |
398 | 398 | $(CC) $? $(NOLOGO) -o $@ -U_WIN32 |
399 | 399 | |
400 | +$(VP)/webget.exe : webget.c | |
401 | + $(CC) $? $(NOLOGO) -o $@ -lwsock32 | |
402 | + | |
400 | 403 | $(VP)/which.exe : which.c |
401 | 404 | $(CC) $? $(NOLOGO) -o $@ -DDOS -DX68K |
402 | 405 | |
403 | -$(VP)/xalloc.exe : xalloc.c | |
404 | - $(CC) $? $(NOLOGO) -o $@ | |
405 | - | |
406 | 406 | $(VP)/winmidisample.exe : winmidisample.c |
407 | 407 | $(CC) $? $(NOLOGO) -o $@ -luser32 -lwinmm -lgdi32 -lcomdlg32 |
408 | 408 | |
409 | +$(VP)/xalloc.exe : xalloc.c | |
410 | + $(CC) $? $(NOLOGO) -o $@ | |
411 | + | |
409 | 412 | $(VP)/zusa.exe : zusa.c |
410 | 413 | $(CC) $? $(NOLOGO) -o $@ |
411 | 414 |