Makefile: Grok "OS/2" from uname

This commit is contained in:
Bill Kendrick 2024-06-07 23:55:59 -07:00
parent 8ba9fb85e1
commit 4c18bff7ed

View file

@ -60,8 +60,12 @@ else
STDC_LIB:=-lstdc++.r4
endif
else
OS:=linux
GPERF:=/usr/bin/gperf
ifeq ($(SYSNAME),OS/2)
OS:=os2
else
OS:=linux
GPERF:=/usr/bin/gperf
endif
endif
endif
endif