mirror of
https://github.com/ProDOS-8/xHD.git
synced 2025-02-05 20:32:07 +00:00
b958c660a9
https://github.com/digitalinteraction/openmovement/blob/master/Software/AX3/omconvert/mmap-win32.h already contains the full implementation.
16 lines
227 B
Makefile
16 lines
227 B
Makefile
xHDServer: main.o
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
|
|
|
LDLIBS = -lserialport
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
|
|
LDLIBS += -lcfgmgr32 -lsetupapi
|
|
|
|
CC = gcc
|
|
CXX = g++
|
|
CPPFLAGS = -m64 -I win32
|
|
LDFLAGS = -m64 -L win32
|
|
|
|
endif # Windows_NT
|