mirror of
https://github.com/ksherlock/profuse.git
synced 2024-11-12 20:08:22 +00:00
git-svn-id: https://profuse.googlecode.com/svn/branches/v2@118 aa027e90-d47c-11dd-86d7-074df07e0730
This commit is contained in:
parent
736746052b
commit
da22eb1114
@ -141,4 +141,3 @@ std::time_t DateTime::toUnix() const
|
||||
// convert back via locatime & fudge for dst?
|
||||
}
|
||||
|
||||
} // namespace
|
||||
|
21
Makefile
Normal file
21
Makefile
Normal file
@ -0,0 +1,21 @@
|
||||
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
|
||||
|
||||
|
||||
|
@ -83,6 +83,7 @@ VolumeDirectory::~VolumeDirectory()
|
||||
_device->sync();
|
||||
delete _device;
|
||||
}
|
||||
delete _bitmap;
|
||||
}
|
||||
|
||||
void VolumeDirectory::write(Buffer *out)
|
||||
|
Loading…
Reference in New Issue
Block a user