Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
JHRobotics committed Mar 19, 2024
1 parent 182f9cc commit 17d06ca
Show file tree
Hide file tree
Showing 21 changed files with 2,126 additions and 533 deletions.
15 changes: 11 additions & 4 deletions Makefile
Expand Up @@ -5,13 +5,17 @@ OBJ_SUFFIX = .o
EXE_NAME = softgpu
EXE_SUFFIX = .exe
LDFLAGS=-static
LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lsetupapi -lkernel32 -lshell32 -Wl,-subsystem,windows
#LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lsetupapi -lkernel32 -lshell32 -Wl,-subsystem,console
LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lkernel32 -lshell32 -lversion -Wl,-subsystem,windows
#LIBS=-lsetupapi -lgdi32 -luser32 -ladvapi32 -lkernel32 -lshell32 -lversion -Wl,-subsystem,console

SOFTGPU_PATCH=2023
SOFTGPU_PATCH=2024

ifdef EXTRA_INFO
CFLAGS += -DEXTRA_INFO="\"$(EXTRA_INFO)\""
CFLAGS += -DEXTRA_INFO="$(EXTRA_INFO)"
endif

ifdef EXTRA_ICO
RES_FLAGS += -DEXTRA_ICO="$(EXTRA_ICO)"
endif

NULLOUT=$(if $(filter $(OS),Windows_NT),NUL,/dev/null)
Expand All @@ -34,7 +38,10 @@ SOURCES = \
winini.c \
windrv.c \
winreg.c \
winres.c \
setuperr.c \
window.c \
settings.c \
resource/softgpu.rc


Expand Down
184 changes: 122 additions & 62 deletions README.md

Large diffs are not rendered by default.

1 comment on commit 17d06ca

@marzboi
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are making my dream of using windows 9x on a VM a dream, since I can't carry my actual retro machine, you are amazing!

Please sign in to comment.