Skip to content

Commit 21994ae

Browse files
committed
update lsm for v1.6, remove nonfunctional build.bat, update Makefile to build _label.exe without CATS
1 parent 64030e1 commit 21994ae

3 files changed

Lines changed: 8 additions & 76 deletions

File tree

build.bat

Lines changed: 0 additions & 72 deletions
This file was deleted.

label.lsm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Begin3
22
Title: Label
3-
Version: 1.5
4-
Entered-date: 19 Nov 2021
3+
Version: 1.6
4+
Entered-date: 23 Feb 2026
55
Description: Sets or changes the disk volume label
66
Keywords: freedos, label
77
Author: Joe Cosentino <hardmarine -at- comcast.net>

src/Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
all: label.exe
2+
all: label.exe _label.exe
33

44
ifndef COMPILER
55
COMPILER:=watcom
@@ -138,10 +138,14 @@ else
138138
TNYPRNTF:=..$(DIRSEP)tnyprntf$(DIRSEP)tnyprntf.c
139139
endif
140140

141-
label.exe _label.exe: label.c $(KITTEN) $(TNYPRNTF)
141+
label.exe: label.c $(KITTEN) $(TNYPRNTF)
142142
$(CC) $(CFLAGS)$@ $^ $(LDFLAGS)
143143
-$(UPX) $@
144144

145+
_label.exe: label.c $(TNYPRNTF)
146+
$(CC) -DNOCATS $(CFLAGS)$@ $^ $(LDFLAGS)
147+
-$(UPX) $@
148+
145149
clean:
146150
$(RM) *.exe
147151
$(RM) *.o

0 commit comments

Comments
 (0)