mirror of
https://github.com/ksherlock/profuse.git
synced 2025-01-11 14:29:59 +00:00
21 lines
283 B
Makefile
21 lines
283 B
Makefile
|
CC = g++
|
||
|
CPPFLAGS += -Wall -O2
|
||
|
|
||
|
newfs_prodos: \
|
||
|
newfs_prodos.o \
|
||
|
Exception.o \
|
||
|
BlockDevice.o \
|
||
|
UniversalDiskImage.o \
|
||
|
DiskCopy42Image.o \
|
||
|
DavexDiskImage.o \
|
||
|
RawDevice.o \
|
||
|
MappedFile.o \
|
||
|
Buffer.o \
|
||
|
Entry.o \
|
||
|
Directory.o \
|
||
|
VolumeDirectory.o \
|
||
|
Bitmap.o \
|
||
|
DateTime.o
|
||
|
|
||
|
|
||
|
|